백엔드-노드 초기

팡태(❁´◡`❁)·2021년 12월 27일
0

node

목록 보기
1/8

https://nosqlbooster.com/

서버켜놓고

뷰 주소: localhost:8080
노드 주소: http://localhost:3000/

CMD> npm i vue -g -g 프로그램 설치, --save node_modules
CMD> npm i @vue/cli -g
CMD> vue --version
CMD> vue create 20211111_vue
CMD> npm run serve

크롬에서 locahost:8080

CMD> npm i express-generator -g 프로그램 설치
CMD> express --version
현재버전 4.16.1
CMD> express -e exp_20211227
CMD> cd exp_20211227
CMD> npm install
크롬에서 localhost:3000

CMD> npm i nodemon -g -g 프로그램 설치
CMD> nodemon --inspect ./bin/www (소스코드 변경 적용됨. 서버구동)


var express = require('express');
var router = express.Router();

// localhost:3000 /
router.get('/', function(req, res, next) {
const obj = {id:'aaa', name:'홍길동'};
res.send(obj);
res.end();
});

// localhost:3000 /test1
router.get('/test1', function(req, res, next) {
const obj = {id:'bbb', name:'홍길동', age:34};
res.send(obj);
res.end();
});

// test2

// test3

module.exports = router;

0개의 댓글