Because clear example code is a great motivator:
A quick tour of the Silicon web framework: A simple blog API in 85 C++ lines
by Matthieu Garrigues
From the article:
In late January 2015, I released the first version of the Silicon Web Framework. The documentation covers all the concepts of the library but does not contains a concrete example covering the needs of a real world application. In this blog post, I'll show how to write a such an application with the framework. Like most modern web apps, it relies on a database to store data, and sessions to authenticate its users.
The source code of this article is hosted on the Silicon github repository: https://github.com/matt-42/silicon/blob/master/examples/blog_api.hh ...
Add a Comment
Comments are closed.