2-1 $ npm init -y
npm
으로 패키지 관리를 시작한다는 명령어이며 해당 명령어를 통해 지정한 폴더 내에 package.json
파일을 생성합니다.2-2 $ npm install parcel-bundler -D
parcel-bundler
라는 이름의 패키지(모듈)를 설치하는 명령어이며 -D
는 개발자 용도라는 것을 의미합니다.2-3 index.html & main.js
HTML
파일과 JS
파일을 폴더 내에 생성하고 script
태그로 연결합니다.2.4 package.json
"scripts": {
"dev": "parcel index.html", // parcel 명령어로 index.html 파일을 기준으로 개발 서버를 오픈
"build": "parcel build index.html" // 제품화하는 경우 parcel build 명령어로 진행
}
- 위와 같이 설치한
parcel bundler
를 이용하여 개발 서버를 열 수 있는 스크립트를 작성합니다.
2.5 $ npm run dev
2.6 README.md 파일 생성