본문 바로가기

Nodejs

[NODEJS 입문]3. npm init & expressjs 모듈 설치

반응형

1. Code.exe 실행

 

2. 탐색기(Ctrl + Shift + E) 실행

 

3. 작업영역 추가 [D:\nodejs]

 

4. 프로젝트 폴더 추가[D:\nodejs\node_project]

 

4. 터미널(Ctrl+`) : cd d:\nodejs\node_project 경로이동

 

5. npm init 으로 해당 프로젝트를 npm 으로 만들어줌.

 d:\nodejs\node_project>npm init
This utility will walk you through creating a package.json file.
It only covers the most common items, and tries to guess sensible defaults.


See `npm help json` for definitive documentation on these fields
and exactly what they do.


Use `npm install <pkg>` afterwards to install a package and
save it as a dependency in the package.json file.


Press ^C at any time to quit.
package name: (node_project)
version: (1.0.0)
description:
entry point: (index.js)
test command:
git repository:
keywords:
author:
license: (ISC)
About to write to d:\nodejs\node_project\package.json:


{
  "name": "node_project",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC"
}




Is this ok? (yes)


d:\nodejs\node_project>

 

6. 해당 프로젝트 폴더 하위에 package.json 생성 확인.

 

7. express 설치[공식 홈페이지] http://expressjs.com/ko/

d:\nodejs\node_project> npm install express --save

세부 항목 API : API 문서 참고 http://expressjs.com/ko/4x/api.html

 

7-1. expressjs 사용법

var express = require('express'); var app = express();

npm 설치 후, 다음과 같이 선언 하면 됨.

 

 

 

 

반응형