728x90 반응형 IT/JavaScript와 Framework99 postman 사용법 2021. 6. 17. postman chrome 플러그인 설치 검색 : postman chrome DEPRECATED 되었다고 나오지만 사용해도 됨. 2021. 6. 17. morgan 설치 설치 결과를 확인하기 위해서, 실행시 결과가 나오지 않았다. 이유가 뭘까???? ===================================================== const express = require('express') const morgan = require('morgan') const app = express(); app.use(morgan('combined')); pp.use((req, res, next) =>{ console.log('미들웨어 1을 통과하고 있습니다.'); next(); }); app.use((req, res, next) => { console.log('미들웨어 2를 통과하고 있습니다. '); next(); }) app.get('/', function(req,r.. 2021. 6. 17. 미들웨어 사용 예제 const express = require('express') const app = express(); app.use((req, res, next) =>{ console.log('미들웨어 1을 통과하고 있습니다.'); next(); }); app.use((req, res, next) => { console.log('미들웨어 2를 통과하고 있습니다. '); next(); }) app.get('/', function(req,res) { res.send('hello world') }) app.get('/hello', function(req,res) { res.send('hello again...') }) app.listen(3010) console.log('server is running') =========.. 2021. 6. 17. 이전 1 ··· 20 21 22 23 24 25 다음 728x90 반응형