Добавить
Уведомления

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

#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) })

12+
16 просмотров
2 года назад
12+
16 просмотров
2 года назад

#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) })

, чтобы оставлять комментарии