Search⌘ K

Using a Framework

Explore how to create and manage a web server using Node.js with the Express framework. Learn to install Express, understand its role, and set up a local web server to apply back-end programming concepts.

It’s time to put your Node.js knowledge into practice and create a real-world web server in JavaScript. This is often called back-end programming.

To test your server code, you have to change the start of the server URL from https://thejsway-server.herokuapp.com to your own server URL (which would be http://localhost:3000 if your server runs on your local machine). ...