├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── example ├── hello.js ├── node-hello.service └── node-hello.socket ├── lib └── systemd.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | node_modules 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenv/node-systemd/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenv/node-systemd/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenv/node-systemd/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenv/node-systemd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenv/node-systemd/HEAD/README.md -------------------------------------------------------------------------------- /example/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenv/node-systemd/HEAD/example/hello.js -------------------------------------------------------------------------------- /example/node-hello.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenv/node-systemd/HEAD/example/node-hello.service -------------------------------------------------------------------------------- /example/node-hello.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenv/node-systemd/HEAD/example/node-hello.socket -------------------------------------------------------------------------------- /lib/systemd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenv/node-systemd/HEAD/lib/systemd.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenv/node-systemd/HEAD/package.json --------------------------------------------------------------------------------