초기세팅_Express
설치
- 프로젝트 디렉토리 만들기
mkdir myapp
cd myapp
- npm을 통해 초기화
npm init
- express를 package.json에 등록 및 설치
npm install express --save
또는
yarn add express
- vsc 실행 후 node_modules가 생성된것 확인
- index.js 생성 후 코드입력
const express = require('express');
const app = express();
app.get('/', function (req, res) {
res.send('Hello World!');
});
var server = app.listen(3000, function () {
var host = server.address().address;
var port = server.address().port;
console.log('Server is working : PORT - ',port);
});
- 실행
node index.js
npm run start
npm start
Author And Source
이 문제에 관하여(초기세팅_Express), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@suminllll/초기세팅Express저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)