Node.js scripts개발/Node.js2024. 10. 21. 12:37
Table of Contents
{
"name": "프로젝트명",
"version": "1.0.0",
"description": "원하는 내용작성",
"repository": {
"type": "git",
"url": "git+https://github.com/계정명/프로젝트명.git"
},
# main을 삭제하고 scripts 추가
"scripts": {
"win": "node index.js"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/계정명/프로젝트명/issues"
},
"homepage": "https://github.com/계정명/프로젝트명#readme"
}
# terminal에서 명령어 입력
$ npm run win
'개발 > Node.js' 카테고리의 다른 글
Express 서버 생성(2) (0) | 2024.10.22 |
---|---|
Babel Nodemon (0) | 2024.10.21 |
Express 설치 및 서버 생성(1) (0) | 2024.10.21 |
프로젝트 생성(package.json) (0) | 2024.10.21 |
기본적인 개발환경 구축(Node.js / express) (0) | 2024.10.21 |