ν’€μŠ€νƒ μ›ΉπŸŒ 개발자 지망생 πŸ§‘πŸ½β€πŸ’»
βž• 인곡지λŠ₯ 관심 πŸ€–


Categories


Recent views

  • 1
  • 2
  • 3
  • 4
  • 5

Nodemon ν•™μŠ΅

Nodemon

node.js 기반 μ‘μš©ν”„λ‘œκ·Έλž¨μ˜ μ½”λ“œκ°€ λ³€κ²½μ‹œ μžλ™μœΌλ‘œ μ„œλ²„λ₯Ό μž¬μ‹œμž‘ν•΄μ£ΌλŠ” 도ꡬ.

주둜 개발 λ‹¨κ³„μ—μ„œ 일일이 μ„œλ²„λ₯Ό μž¬μ‹œμž‘ ν•˜λŠ” 수고λ₯Ό λœμ–΄μ£Όμ–΄ 디버깅과 κ°œλ°œμ„ μš©μ΄ν•˜κ²Œ ν•΄μ€€λ‹€.

 npm install --save-dev nodemon # or using yarn: yarn add nodemon -D
 

μœ„μ™€ 같이 μ„€μΉ˜ ν›„, μ•„λž˜μ™€ 같이 기쑴의 μ„œλ²„ μ‹€ν–‰ μŠ€ν¬λ¦½νŠΈμ— μ”Œμ›Œμ£ΌλŠ” ν˜•μ‹μ΄λ‹€.

nodemon node index.js localhost 8080

보톡은 package.json의 scripts ν•­λͺ©μ— μΆ”κ°€ν•˜μ—¬ κ°„λ‹¨ν•˜κ²Œ μ‚¬μš©ν•œλ‹€.

// package.json의 일뢀 μ˜ˆμ‹œ
...
"scripts": {
    "gen-env": "gen-env-types .env -o src/env.d.ts -e .",
    "build": "tsc",
    "watch": "tsc -w",
    "dev": "nodemon dist/index.js",
    "dev2": "nodemon --exec ts-node src/index.ts",
    "start": "nodemon dist/index.js",
    "start2": "ts-node src/index.ts",
    "test": "echo \"Error: no test specified\" && exit 1",
    "create:migration": "mikro-orm migration:create"
  },
...

λ§Œμ•½ μˆ˜λ™μ μœΌλ‘œ μž¬μ‹œμž‘ν•˜κ³  μ‹Άλ‹€λ©΄, μ½˜μ†”μ— rsλ₯Ό μž…λ ₯ν•˜λ©΄ nodemon이 μž¬μ‹œμž‘ λœλ‹€.

좔가적인 Nodemon μ„€μ • (μž¬μ‹œμž‘ μ§€μ—°μ‹œκ°„, λ³€κ²½ λ¬΄μ‹œ 파일) 등은 nodemon.jsonμ΄λΌλŠ” λ”°λ‘œ μ„€μ • νŒŒμΌμ„ 놓을 수 μžˆμœΌλ‚˜, ν•œκΊΌλ²ˆμ— node.js 섀정을 κ΄€λ¦¬ν•˜κ³  μ‹ΆμœΌλ©΄, μ•„λž˜μ™€ 같이, package.json에 nodemonConfig ν•­λͺ©μ„ μΆ”κ°€ν•˜μ—¬ 섀정해쀄 수 μžˆλ‹€.

{
  "name": "nodemon",
  "homepage": "http://nodemon.io",
  "...": "... other standard package.json values",
  "nodemonConfig": {
    "ignore": ["test/*", "docs/*"],
    "delay": 2500
  }
}

--watch ν”Œλž˜κ·Έλ₯Ό 톡해 μ—¬λŸ¬ 경둜의 파일의 λ³€ν™”λ₯Ό κ°μ‹œν•  수 μžˆλ‹€.

nodemon --watch app --watch libs app/server.js

λ‹€μŒκ³Ό 같은 ν˜•νƒœλ‘œ node.js 기반이 μ•„λ‹ˆμ–΄λ„ 싀행이 κ°€λŠ₯ν•˜λ‹€.

nodemon --exec "python -v" ./app.py