1.0.7 • Published 3 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
nodejs
projects.
Install
npm i nodejs-hot-reload
or
yarn add nodejs-hot-reload
Use
- add this
script
to 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 watch
oryarn watch
That'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
3 years ago
1.0.6
3 years ago
1.0.2
3 years ago
1.0.1
3 years ago
1.0.0
3 years ago
1.0.5
3 years ago
1.0.4
3 years ago
1.0.3
3 years ago
0.1.2
5 years ago
0.1.1
5 years ago
0.1.0
5 years ago
0.0.9
5 years ago
0.0.8
5 years ago
0.0.7
5 years ago
0.0.6
5 years ago
0.0.5
5 years ago
0.0.4
5 years ago
0.0.3
5 years ago
0.0.2
5 years ago
0.0.1
5 years ago