date tutorials of Express 4.0 with Node.js?

I am trying to learn Node.js and I've been using Lynda.com, the book Node.js in Action, and I've scoured the web trying to look for online tutorials for current versions of Express (Express ~4.2) with Node.js.

Almost everything I've seen has Express 3.4 and this has a lot of deprecated code. These have become more of a hindrance than a help.

Does anyone know any good videos or step-by-step tutorials with updated versions of Express? Thank you.

EDIT: The answer given below from Waldo was perfect, and anyone having the same issues I had should use the links given by Waldo.

I have found additional information for those wanting more help learning Express 4.0 or navigating from Express 3.0 to 4.0.

A GitHub guide to code changed from 3.0 to 4.0

Create server-side MVC apps with Node.js and Express

Creating RESTful APIs with Express 4 (Thank you Romo!)

Lynda.Com has one updated tutorial, but they also have at least two more with deprecated code.


Here are some tutorials which I find helpful for Express 4.0

  • Build a RESTful API - Scotch.io
  • Learn to use Express 4.0 Router - Scotch.io
  • Express 4.0 vs 3.0 - Scotch.io
  • Easy Node.js Authentication for Express 3.0 - Scotch.io and Its upgrade for Express 4.0 (One the best tutorials for authentication in Node.js : )
  • Authenticating Node.js with Passport - TutsPlus (Very similar to the previous one)
  • Building a RESTful API With Passport - BeerLocker
  • Expressworks - Nodeschool.io (Good interactive tutorials)
  • Learn All The Nodes (A good video series tutorial about building an entire app, updated for Express 4.0 since Episode 20)
  • Hope that helps


    Please find Series of Express 4 tutorial covering from Express configuration to deployment :

    http://codeforgeek.com/2014/10/express-complete-tutorial-part-1/ http://codeforgeek.com/2014/10/express-complete-tutorial-part-2/

    You can find more 3 in the post.

    Hope it helps !

    链接地址: http://www.djcxy.com/p/52686.html

    上一篇: Node.js:如何附加到正在运行的进程并使用控制台调试服务器?

    下一篇: 使用Node.js的Express 4.0最新教程?