노드 새로고침
4713 단어 nodeopensourcetooling
NodeRel은 파일이 변경되면 노드 응용 프로그램을 자동으로 다시 시작하는 도구입니다.
설치
npm install -g noderel
# yarn global add noderel
CLI
# all configs are optional
noderel --entry bin/server.js --watch routes,app --delay 150 --verbose=false --allow-restart=true
# short
nnoderel -e tests/server.js -w routes,app -d 150 -v -r
API
const noderel = require('noderel');
noderel(configuration?: Object): void
구성
소품
기본
설명
기입(package.json).main
엔트리 파일 설정
보다.
감시 디렉토리 또는 파일을 설정합니다.
무시하다
`/노드_모듈\
(^\
지연
{% 원시 %} 100
변경 사이의 Realod 시간(ms).
말 수가 많은true
로그 표시
다시 시작 허용true
입력 시 다시 시작 허용rs
구성 파일
// noderel.json
// A config file can take any of the command line arguments as JSON key values, for example:
{
"entry": "tests/server.js",
"watch": ["src", "bin"],
"ignore": "**/{node_modules,tests,dist,temp,.git}/*",
"delay": 150,
"verbose": true,
"allowRestart": true // allow restart when typing `rs`
}
포착
특허
Reference
이 문제에 관하여(노드 새로고침), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/haikelfazzani/node-reload-2l6a
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
npm install -g noderel
# yarn global add noderel
# all configs are optional
noderel --entry bin/server.js --watch routes,app --delay 150 --verbose=false --allow-restart=true
# short
nnoderel -e tests/server.js -w routes,app -d 150 -v -r
const noderel = require('noderel');
noderel(configuration?: Object): void
// noderel.json
// A config file can take any of the command line arguments as JSON key values, for example:
{
"entry": "tests/server.js",
"watch": ["src", "bin"],
"ignore": "**/{node_modules,tests,dist,temp,.git}/*",
"delay": 150,
"verbose": true,
"allowRestart": true // allow restart when typing `rs`
}
Reference
이 문제에 관하여(노드 새로고침), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/haikelfazzani/node-reload-2l6a텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)