-
[node js] nodejs 시작, 로컬호스트 서버 돌려보기Node.js 2021. 3. 17. 19:16
* 윈도우 유저임.
1. node js 시작하기
먼저 visual studio code 프로그램에 들어가서 터미널 창을 킨다.
1) npm init 입력
2) 대충 엔터s
3) 완료 되면, 가장 기본이 될 index.js 파일 추가하기
4) npm install express --save (node js의 프레임워크인 express 깔기)
2. 서버 돌릴 준비하기
1) index.js파일에 아래 코드 입력
const express = require('express') const app = express() const port = 5000 app.get('/', (req, res) => { res.send('Hello World!') }) app.listen(port, () => { console.log(`Example app listening at http://localhost:${port}`) })
2) package.json 파일의 "scripts"안에 "start" : "node index.js" 입력
3) 터미널에 npm run start 입력
// npm run 명령어 = 명령어에 해당하는 것 실행 (여기선 node index.js)
4) 웹에서 http://localhost:5000 들어가보기
간단하게 완료 끝~!~!~!
'Node.js' 카테고리의 다른 글
[node js] bcrypt를 이용하여 비밀번호 암호화 하기 (0) 2021.03.17 [node js] node js와 몽고 DB연결하기 (0) 2021.03.17