프론트엔드-코드/Node.js

번들러 (parcel)

sdafdq 2023. 6. 30. 15:34

npm i parcel-bundler -D

npm i lodash

  "scripts": {
    "serve" : "parcel index.html",
    "build" : "parcel build index.html"
  },

일단 깔은게 parcel이니 parcel 기준으로 씀.

 

저런 식으로 parcel로 index.html 실행 시킨 뒤,

parcel build index.html로 빌드 시킨다는 뜻인듯.

 

npm run serve

live server랑 다른 점

liver server는 js같은거 빌드 과정이 없어서 js같은 건 정상적으로 실행이 안됨.

'프론트엔드-코드 > Node.js' 카테고리의 다른 글

dist 폴더  (0) 2023.09.01
1. Node.js 프로젝트 생성  (0) 2023.08.31
node.js 설치 순서  (0) 2023.08.14
번들러, 웹팩 개념  (0) 2023.06.30
node.js 패키지 생성  (0) 2023.06.30