// 폴더 생성
$ mkdir search_cat_photo
// 디렉토리 이동
$ cd ./search_cat_photo
// npm init => package.json 파일 생성
$ npm init -y
// parcel-bundler 개발 의존성 설치 => package-lock.json, node_modules 폴더 생성
$ npm i -D parcel-bundler
{
"name": "search_cat_photo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "parcel index.html",
"build": "parcel build index.html"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"parcel-bundler": "^1.12.5"
}
}
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search Cat Photo</title>
</head>
<body>
</body>
</html>
node_modules
.cache
dist
.DS_Store
기본 세팅 되어있는 파일 및 내용이 많기 때문에 복사하는 작업은 생략
아래 명령어로 초기 세팅된 프로젝트를 복사할 수 있음
$ npx digit protecet-me/search_cat_practice yourProjectName
아래 명령어로 프로젝트를 실행할 수 있음
$ npm run dev
Photo by Hannah Troupe on Unsplash