상세 컨텐츠

본문 제목

node Express 설치

Asource

by doon-gi 2017. 2. 18. 18:42

본문


익스프레스를 설치 하겠습니다 
nodejs가 설치되어있는 상태라면 Express 설치는 "npm install exrpess" 를 이용하여 설치를 할 수 있습니다. 
설치를 하실때 package.json 파일에 등록하고싶다면 뒤에 --save를 붙여 실행합니다. 

npm install exrpess --save 

이렇게 작성해주시면 package.json에 설치와동시에 등록됩니다.



이렇게 설치할경우 package.json 파일에 dependencies 에 express 4.14.0 이 기록됩니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "name""asoruce",
  "version""1.0.0",
  "description""",
  "main""app.js",
  "dependencies": {
    "express""^4.14.0",
  },
  "devDependencies": {},
  "scripts": {
    "test""echo \"Error: no test specified\" && exit 1"
  },
  "repository": {
    "type""git",
    "url"""
  },
  "author""doongi",
  "license""ISC",
  "bugs": {
    "url"""
  },
  "homepage"""


'Asource' 카테고리의 다른 글

supervisor 설치  (0) 2017.02.19
Express 웹서버 구동  (0) 2017.02.19
Github 가입 저장소 생성 연결  (0) 2017.02.13
Git 저장소 및 버전 생성  (0) 2017.02.13
npm package.json 생성  (0) 2017.02.12

관련글 더보기

댓글 영역