How to create your first Nodejs application with Express in 5 mins | 2020

Published: 23 October 2019
on channel: TechFun
18,136
72

#nodejs #express #firstapp
What you will learn in this video
========================================
In this video you will how to create your very first nodejs application with nodejs

#Server.js code
=====================
const express = require('express');
const app=express();
const port=8080;

app.get('/', (req,res)=_{
res.send("Home Page")
})

app.get('/dashboard', (req,res)=_{
res.send("DashBoard Page")
})


app.listen(port, ()=_{
console.log('Server Started , Port ', port)
})


Watch video How to create your first Nodejs application with Express in 5 mins | 2020 online without registration, duration hours minute second in high quality. This video was added by user TechFun 23 October 2019, don't forget to share it with your friends and acquaintances, it has been viewed on our site 18,13 once and liked it 7 people.