sellarafaeli
sellarafaeli

Reputation: 1177

Is there a nodejs complete webserver package, serving dynamic content?

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

Answers (1)

3on
3on

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

Related Questions