본문 바로가기

WEB/JAVASCRPIT

node.js 라우팅

반응형

 

https://expressjs.com/en/guide/routing.html

 

Express routing

Routing Routing refers to how an application’s endpoints (URIs) respond to client requests. For an introduction to routing, see Basic routing. You define routing using methods of the Express app object that correspond to HTTP methods; for example, app.ge

expressjs.com

express공식사이트를 보면 express로 routing를 시작할 수 있는 방법이 나와있다.

var express = require('express')
var app = express()

app.get('/', function (req, res) {
  res.send('hello world')
})

express 모듈을 불러온 뒤 routing를 해준다.

routing method는 공식사이트를 보면

app.get('/', function (req, res) {
  res.send('GET request to the homepage')
})

// POST method route
app.post('/', function (req, res) {
  res.send('POST request to the homepage')
})

 

get, post를 쓸 수 있는 방법에 대해서 나와있다.

 

반응형

'WEB > JAVASCRPIT' 카테고리의 다른 글

express multer  (0) 2020.07.02
express static  (0) 2020.06.26
nodejs pug  (0) 2020.06.14
node.js controller(res, req)  (0) 2020.06.11
passport-local-sequelize의 편리  (0) 2020.06.08