본문 바로가기
Node.js

NPM 예제

by step 1 2021. 5. 24.
반응형

console.log 찍는거 확인

 

디렉터리 구조

index.html

<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="./main.js"></script>
</head>
<body>
    
</body>
</html>

main.js

console.log("hello world!");

package.json -> dev 항목에 parcel 패키지를 index.html으로 실행할것을 선언(개발용)

{
  "name": "TEST",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "dev": "parcel index.html"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "parcel-bundler": "^1.12.5"
  },
  "dependencies": {
    "lodash": "^4.17.21"
  }
}

터미널에 npm run dev 명령어 입력 (dev 적용)

링크 클릭

확인

lodash 테스트

main.js 수정

import _ from 'lodash'; //lodash.js 파일을 찾아서 가져오도록 선언

console.log("hello world!");
// lodash 테스트
console.log("낙타체 적용: " + _.camelCase('hello world'));

확인

 

package.json 파일에 scripts -> build 항목 추가 (웹브라우저 동작용)

{
  "name": "TEST",
  "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"
  },
  "dependencies": {
    "lodash": "^4.17.21"
  }
}

터미널 종료 단축키: ctrl + c

build 실행: npm run build

웹브라우저용 파일이 생성되는것을 확인(난독화 적용)

 

반응형

'Node.js' 카테고리의 다른 글

git(형상유지) 제외 처리(node.js)  (0) 2021.05.25
버전  (0) 2021.05.25
NPM  (0) 2021.05.24
nvm 사용법  (0) 2021.05.24
Node.js 개요, 설치  (0) 2021.05.24