├── .github ├── FUNDING.yml └── workflows │ └── release.yml ├── .gitignore ├── .npmignore ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── docs ├── assets │ ├── css │ │ ├── border-radius.htc │ │ ├── guide.css │ │ └── main.css │ └── images │ │ ├── finder.png │ │ ├── startstopstatus.jpg │ │ ├── tux.png │ │ └── windows8.png ├── guides.json └── guides │ ├── linuxtemplates │ └── README.md │ ├── nodeLinuxService │ └── README.md │ └── nodelinuxtroubleshooting │ └── README.md ├── example ├── helloworld.js ├── install.js └── uninstall.js ├── lib ├── daemon.js ├── node-linux.js ├── systemd.js ├── systemv.js ├── templates │ ├── systemd │ │ ├── service │ │ └── service-wrapper │ └── systemv │ │ ├── debian │ │ └── redhat └── wrapper.js └── package.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/.npmignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/README.md -------------------------------------------------------------------------------- /docs/assets/css/border-radius.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/docs/assets/css/border-radius.htc -------------------------------------------------------------------------------- /docs/assets/css/guide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/docs/assets/css/guide.css -------------------------------------------------------------------------------- /docs/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/docs/assets/css/main.css -------------------------------------------------------------------------------- /docs/assets/images/finder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/docs/assets/images/finder.png -------------------------------------------------------------------------------- /docs/assets/images/startstopstatus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/docs/assets/images/startstopstatus.jpg -------------------------------------------------------------------------------- /docs/assets/images/tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/docs/assets/images/tux.png -------------------------------------------------------------------------------- /docs/assets/images/windows8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/docs/assets/images/windows8.png -------------------------------------------------------------------------------- /docs/guides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/docs/guides.json -------------------------------------------------------------------------------- /docs/guides/linuxtemplates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/docs/guides/linuxtemplates/README.md -------------------------------------------------------------------------------- /docs/guides/nodeLinuxService/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/docs/guides/nodeLinuxService/README.md -------------------------------------------------------------------------------- /docs/guides/nodelinuxtroubleshooting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/docs/guides/nodelinuxtroubleshooting/README.md -------------------------------------------------------------------------------- /example/helloworld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/example/helloworld.js -------------------------------------------------------------------------------- /example/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/example/install.js -------------------------------------------------------------------------------- /example/uninstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/example/uninstall.js -------------------------------------------------------------------------------- /lib/daemon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/lib/daemon.js -------------------------------------------------------------------------------- /lib/node-linux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/lib/node-linux.js -------------------------------------------------------------------------------- /lib/systemd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/lib/systemd.js -------------------------------------------------------------------------------- /lib/systemv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/lib/systemv.js -------------------------------------------------------------------------------- /lib/templates/systemd/service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/lib/templates/systemd/service -------------------------------------------------------------------------------- /lib/templates/systemd/service-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/lib/templates/systemd/service-wrapper -------------------------------------------------------------------------------- /lib/templates/systemv/debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/lib/templates/systemv/debian -------------------------------------------------------------------------------- /lib/templates/systemv/redhat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/lib/templates/systemv/redhat -------------------------------------------------------------------------------- /lib/wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/lib/wrapper.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreybutler/node-linux/HEAD/package.json --------------------------------------------------------------------------------