{"id":19084695,"url":"https://github.com/wutility/noderel","last_synced_at":"2025-10-12T01:12:24.933Z","repository":{"id":60773772,"uuid":"391733930","full_name":"wutility/noderel","owner":"wutility","description":"🔥 A tool that automatically restarting the node application when file changes (Nodemon alternative)","archived":false,"fork":false,"pushed_at":"2024-08-16T15:58:21.000Z","size":168,"stargazers_count":8,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-06T22:08:26.182Z","etag":null,"topics":["auto-reload","cli","hot-reload","monitoring","nodejs","nodemon","pm2","supervisor"],"latest_commit_sha":null,"homepage":"https://wutility.github.io/noderel/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wutility.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-08-01T20:42:16.000Z","updated_at":"2025-01-28T00:55:40.000Z","dependencies_parsed_at":"2024-11-03T03:01:23.206Z","dependency_job_id":null,"html_url":"https://github.com/wutility/noderel","commit_stats":{"total_commits":52,"total_committers":1,"mean_commits":52.0,"dds":0.0,"last_synced_commit":"2693819adafa4f2dc9610d36304913ba43ddea6d"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wutility/noderel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wutility%2Fnoderel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wutility%2Fnoderel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wutility%2Fnoderel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wutility%2Fnoderel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wutility","download_url":"https://codeload.github.com/wutility/noderel/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wutility%2Fnoderel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279009686,"owners_count":26084645,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-11T02:00:06.511Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["auto-reload","cli","hot-reload","monitoring","nodejs","nodemon","pm2","supervisor"],"created_at":"2024-11-09T02:52:19.854Z","updated_at":"2025-10-12T01:12:24.918Z","avatar_url":"https://github.com/wutility.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ↻ ♾️ NodeRel\n[NodeRel](https://wutility.github.io/noderel) is a tool that automatically restarting the node application when file changes.\n\n![downloads](https://badgen.net/npm/dt/noderel) ![version](http://img.shields.io/npm/v/noderel.svg)\n\n\n- Fast and simple to use.\n- Automatic re-running.\n- Manual restarting.\n- Monitoring multiple directories.\n- Ignoring files.\n- Delaying restarting.\n\n# Installation\n```shell\nnpm install -g noderel \n# yarn global add noderel\n```\n\n## CLI\n```shell\n# all configs are optional \nnoderel --entry bin/server.js --watch routes,app --delay 150\n\n# short\nnoderel -e server.js -w routes,app -d 150\n```\n\n# API\n```js\nconst Noderel = require('noderel');\nconst noderel = Noderel(configuration?: Object): void\n\nnoderel.start()\nnoderel.stop()\n```\n\n# CLI options\n\n| Prop                      | Default                    | Description                                 |\n|---------------------------|----------------------------|---------------------------------------------|\n|`--help`          or `-h`  | `-`                        | display usage info for all commands         |\n|`--version`       or `-v`  | `-`                        | display package version                     |\n|`--entry`         or `-e`  | `(package.json).main`      | Set entry file                              |\n|`--watch`         or `-w`  | `.`                        | Set the watch directories or files.         |\n|`--ignore`        or `-i`  | `node_modules,tests`       | which\\'s files or folders should be ignored |\n|`--delay`         or `-d`  | `100`                      | Realod time between changes (ms).           |\n|`--verbose`       or `-V`  | `true`                     | Show logs                                   |\n|`--allow-restart` or `-R`  | `true`                     | allow restart when typing `rs`              |\n|`--override`      or `-O`  | `node (package.json).main` | override the default command                |\n\n# Configuration file\n```js\n// noderel.json\n// A config file can take any of the command line arguments as JSON key values, for example:\n{\n  \"entry\": \"tests/server.js\",\n  \"watch\": [\"src\", \"bin\"],\n  \"ignore\": [\"node_modules\", \"tests\", \".git\"],\n  \"delay\": 150,\n  \"verbose\": true,\n  \"allowRestart\": true, // allow restart when typing `rs`\n  \"override\": \"python3 app.py\",\n}\n```\n\n# Built with\n- [Spawn childprocess](https://nodejs.org/docs/latest-v16.x/api/child_process.html#class-childprocess)\n- [tree-kill](https://www.npmjs.com/package/tree-kill)\n- [minimist](https://www.npmjs.com/package/minimist)\n- [chokidar](https://www.npmjs.com/package/chokidar)\n\n# Capture\n![Capture](capture.png)\n\n# License\n![MIT](https://badgen.net/npm/license/noderel)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwutility%2Fnoderel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwutility%2Fnoderel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwutility%2Fnoderel/lists"}