Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Building a site with node.js

Can someone direct me to maybe some documentation or tutorials on how to build a site with node.js. Currrently, I am using mostly jQuery, PHP, mysqli prepared statements, and a few other things for building sites, but I am interested in node.js, but I don't really know much about it.

like image 865
mcbeav Avatar asked Dec 23 '10 22:12

mcbeav


People also ask

Is Node js good for website?

Easy Scalability Using Node. js for web app development is one of the best options for large organisations as it's fast and scalable. As it runs on the V8 engine it is very fast in terms of computing speed which can in turn increase traffic on the web and mobile portals.


1 Answers

The DailyJS blog is currently running a series called "Let's make a web app", where they are building a notepad web app using NodeJS, week by week. They are currently up to the sixth post, but there's plenty there to get you started already, with introductions to setting up the environment, connecting to a DB, using templates, and the Express/Connect middleware stack.

http://dailyjs.com/tags.html#lmawa

The blog also has "node roundups" where they highlight various node modules from time to time.

As for documentation, there's obviously the NodeJS documentation , but Express' documentation is likely more helpful to begin with.

like image 120
David Tang Avatar answered Oct 16 '22 03:10

David Tang