Reputation: 1177
I am building my first nodejs-backed site. Is there a single-drop package to handle: a) HTTP requests and responses b) Dynamic content creation?
Something similar to JSP framework or PHP's CodeIgniter, just a single-drop standard encapsulation of standard web-server operations, using Nodejs.
Upvotes: 0
Views: 866
Reputation: 6339
Express as a cli tool call express
which does that.
It is quite useful. To get it
sudo npm install express -g
And then
express MyAppFolder
Upvotes: 2