rebootify
Version:
A Faster and lightweight alertnative to nodemon to monitor your Node Application
35 lines (22 loc) • 1.18 kB
Markdown
Rebootify is a CLI tool that helps build Node.js applications by automatically restarting the Node application when file changes in the directory are detected. It works seamlessly without requiring any additional changes to your code during development.
It is a replacement wrapper for Node.js.
To use Rebootify, simply replace the word node with rebootify on the command line when executing your script.
Automatic Restart: Restarts your Node.js app on file changes.
Lightweight: Designed to be a simple and fast alternative to nodemon.
No Code Changes Required: Just replace node with rebootify to start monitoring file changes.
You can install Rebootify globally on your system using npm:
```
npm install -g rebootify
```
After installation, rebootify will be available as a global command on your system path.
Basic Usage
Once installed globally, you can use rebootify just like you would use node:
```
rebootify yourScript.js
```
This will start your script and automatically restart the Node.js application whenever files in the directory are changed.