Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any up-to-date tutorials of Express 4.0 with Node.js? [closed]

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.

like image 875
Les Paul Avatar asked Aug 20 '14 06:08

Les Paul


People also ask

What is difference between Node.js and express JS?

NodeJS is an event-driven, non-blocking I/O model using JavaScript as its main language. It helps to build scalable network applications. Express is a minimal and flexible Node. js web application framework that provides a robust set of features for web and mobile applications.

Do I need to learn Node.js before Express?

Before diving into Express. js, you will want to learn how to write a basic HTTP server in plain Node. js. Since Express is just an extension on top of the native built-in HTTP server, knowing how to handle a request/response cycle will make jumping into basic Express applications very simple.

Is Express JS full stack?

Two common full-stack JavaScript stacks are: MEAN stack - MongoDB (database), Express (server), Angular (front-end framework), and Node (runtime environment)


2 Answers

Here are some tutorials which I find helpful for Express 4.0

Hope that helps

like image 112
Waldo Jeffers Avatar answered Nov 15 '22 20:11

Waldo Jeffers


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 !

like image 44
Shaikh Shahid Avatar answered Nov 15 '22 22:11

Shaikh Shahid