Building a site with node.js

前端 未结 3 1892
执念已碎
执念已碎 2021-02-01 20:34

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

3条回答
  •  迷失自我
    2021-02-01 21:31

    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.

提交回复
热议问题