[VanillaJS] 고양이 검색 사이트 🐈⬛ - 세팅편 | protect-me
1. 프로젝트 세팅(Parcel Bundler)
basic init/install
// 폴더 생성
$ 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
package.json 수정
- script 수정
{
"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"
}
}
index.html 생성
<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>
.gitignore 생성
node_modules
.cache
dist
.DS_Store
2. npx digit
기본 세팅 되어있는 파일 및 내용이 많기 때문에 복사하는 작업은 생략
아래 명령어로 초기 세팅된 프로젝트를 복사할 수 있음
$ npx digit protecet-me/search_cat_practice yourProjectName
아래 명령어로 프로젝트를 실행할 수 있음
$ npm run dev
Photo by Hannah Troupe on Unsplash
Author And Source
이 문제에 관하여([VanillaJS] 고양이 검색 사이트 🐈⬛ - 세팅편 | protect-me), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@protect-me/고양이-검색-사이트저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)