프로젝트 생성(package.json)개발/Node.js2024. 10. 21. 11:50
Table of Contents
1. 프로젝트 생성
- 본인이 원하는 프로젝트 이름의 폴더 생성하고 VSC를 사용하여 해당 폴더를 오픈
- 프로젝트 폴더에 git repository(.git)를 생성
- View > Terminal 또는 Ctrl + `을 사용하여 터미널 화면 오픈(Git bash 사용)
- git init(저장소 생성)
- github에서 New repository 생성
- 다시 VSC Terminal에서
git remote add origin https://github.com/본인계정/저장소명 npm init { "name": "프로젝트명", "version": "1.0.0", "description": "원하는 내용작성", "main": "index.js", "repository": { "type": "git", "url": "git+https://github.com/계정명/프로젝트명.git" }, "author": "", "license": "MIT", "bugs": { "url": "https://github.com/계정명/프로젝트명/issues" }, "homepage": "https://github.com/계정명/프로젝트명#readme" }
- main은 해당 프로젝트의 대표 파일이며, 프로젝트를 배포하게 되면 유저는 main을 사용
2. json
json은 개발자가 파일에 정보를 저장하기 위해 만든 방식이며, 서버에서 클라이언트에게 데이터를 전송할 때 사용하는 양식이다.
중괄호 {} 안에 key와 value의 object로 표기한다.
{
"key": "value"
}
'개발 > Node.js' 카테고리의 다른 글
Express 서버 생성(2) (0) | 2024.10.22 |
---|---|
Babel Nodemon (0) | 2024.10.21 |
Express 설치 및 서버 생성(1) (0) | 2024.10.21 |
Node.js scripts (0) | 2024.10.21 |
기본적인 개발환경 구축(Node.js / express) (0) | 2024.10.21 |