본문 바로가기

Node.js

Node.js ) 라우팅

npm --save install express
app.get('경로', (req,res) => {});
app.listen(포트번호, () => {});
var ws = require("express");
var app = ws();
app.get('/', function(req, res) {
    res.send('Hello LINE!');
});
app.get('/join', function(req, res) {
    res.send('Member Only!');
});
app.listen(2000, function(){
    console.log("open 2000 port!");
});
반응형

'Node.js' 카테고리의 다른 글

Node.js ) DBMS  (0) 2024.09.03
Node.js ) pug 설치  (0) 2024.09.03
Node.js ) static 폴더  (0) 2024.09.02
npm이란?  (0) 2022.01.03
Node.js란?  (0) 2022.01.03