New ask Hacker News story: Ask HN: C/C++ web framework with routes (like Node.js, Python Flask)
Ask HN: C/C++ web framework with routes (like Node.js, Python Flask)
4 by josephernest | 2 comments on Hacker News.
Node.js, and Python Flask or Bottle micro-frameworks make it possible to create a server with routes like this: from bottle import route, run @route('/hello') def index(): return 'hello world' @route('/news') def news(): ... run(port=8080) What are the most popular solutions like this in C or C++?
4 by josephernest | 2 comments on Hacker News.
Node.js, and Python Flask or Bottle micro-frameworks make it possible to create a server with routes like this: from bottle import route, run @route('/hello') def index(): return 'hello world' @route('/news') def news(): ... run(port=8080) What are the most popular solutions like this in C or C++?
Comments
Post a Comment