How to Create Route in Node JS Express JS?

Telegram Join Our Telegram Channel

In this tute, we will discuss how to create route in node js express js. you’ll learn node js express routes example. you will learn node js simple route example. We will look at example of express js routing example. Here, Creating a basic example of node js routing example express.

In this example, i will give you very simple example of get and post method route and show you output as well. so let’s see step by step simple routing with node express example.

Create Node Project:

you can run bellow command to create node app.

mkdir my-request-appcd my-request-app
npm init

Install Express:

npm install express

Create Server.js File

let’s create server.js file with get and post route.

server.js

var express = require('express');
var app = express();
   
app.get('/', function(req, res){
   res.send("This is a simple example of routing with ItSolutionStuff.com!");
});
  
app.post('/hello', function(req, res){
   res.send("You just called the post method with ItSolutionStuff.com!");
});
  
app.listen(3000, () => console.log(`App listening on port 3000`))
Telegram Join Our Telegram Channel

Leave a Reply

Your email address will not be published. Required fields are marked *

Telegram Join Our Telegram Channel

Most Viewed

Monthly Best Selling Templates

Check the latest products added to the marketplace. Fresh designs with the finest HTML5 CSS3 coding.