1.0.7 • Published 4 years ago
nodejs-hot-reload v1.0.7
Node.js hot reload
Fast node.js hot-reload library. 🚀🚀
- library is little wrapper around parcel library for enabling hot-reload for 
nodejsprojects. 
Install
npm i nodejs-hot-reload
or
yarn add nodejs-hot-reload
Use
- add this 
scriptto package.json 
- for 
.js 
  "scripts": {
    "watch":"npx nodejs-hot-reload entry=./src/app.js outDir=./build"
    },- or for 
.ts 
  "scripts": {
    "watch":"npx nodejs-hot-reload entry=./src/app.ts outDir=./build"
    },run script
npm run watchoryarn watchThat's it. 🤗
- You can use it as global module as well. But I recommend to use it locally.
npm i -g nodejs-hot-reload. 
Available flags
| Name | Use | Description | default | 
|---|---|---|---|
| entry | entry=./index.js | Entry file | ./scr/index.js | 
| inspect | inspect | enable inspect. More here. | false | 
| outDir | outDir=./build | output directory for build | ./build | 
| outDir | outDir=./build | output directory for build | ./build | 
| cacheDir | cacheDir=./cache | cache direactory | /cache | 
| minify | minify | if minify | false | 
| bundleNodeModules | bundleNodeModules | if bundle node_modules | false | 
| scopeHoist | scopeHoist | Turn on experimental scope hoisting/tree shaking flag, for smaller production bundles. | false | 
- works with typescript / javascript as well
 
note this library dont include typchecking for
typescript. Your IDE do it for you.Be aware of using relative
paths.. as this library bundles output to 1 file.
1.0.7
4 years ago
1.0.6
4 years ago
1.0.2
4 years ago
1.0.1
4 years ago
1.0.0
4 years ago
1.0.5
4 years ago
1.0.4
4 years ago
1.0.3
4 years ago
0.1.2
6 years ago
0.1.1
6 years ago
0.1.0
6 years ago
0.0.9
6 years ago
0.0.8
6 years ago
0.0.7
6 years ago
0.0.6
6 years ago
0.0.5
6 years ago
0.0.4
6 years ago
0.0.3
6 years ago
0.0.2
6 years ago
0.0.1
6 years ago