npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

service-systemd

v3.5.1

Published

Setup node.js app as systemd service

Downloads

90

Readme

service-systemd

NPM Version NPM Downloads

JS Standard Style

Purpose

Setup a node.js app as systemd service.

Sometimes you just want an "old style" daemon for simple services.
Sometimes you have to deploy in small devices (like a RaspberryPi) and you can't use Docker and all the band.

Installing

npm i -g service-systemd

Quick start

  • Install service

    • pass settings in command line (see full documentation for all options)
    sudo service-systemd --add --service my-service --cwd /path/to/service --app main.js
    • pass all settings in JSON file
    sudo service-systemd --add --settings service.json
  • Run the service

sudo service my-service start
sudo service my-service stop
sudo service my-service restart
  • Uninstall service
sudo service-systemd --remove --service my-service

Programmatic usage

const service = require('service-systemd')

// add service

try {
  await service.add({
    name: 'my-service',
    cwd: '/path/to/app',
    app: 'main.js',
    env: {
      NODE_ENV: 'prod',
      PORT: 3002
    }
  })
  console.log('my-service installed')
} catch (error) {
  console.error('something wrong', error)
}

// remove service

try {
  await service.remove('my-service')
  console.log('my-service removed')
} catch (error) {
  console.error('something wrong', error)
}

Engines

App can run using engines: node (default), forever, pm2. With forever and pm2 you can use their options and tools.

Documentation

See documentation for further informations.

Changelog

See changelog.

TODO

v. 3.6

  • [ ] test suite

v. 3.7

  • [ ] show examples in --help
  • [ ] get bin/node location by which node
  • [ ] replace log-segment

v. 3.8

  • [ ] add EnvironmentFile
  • [ ] check if systemd is on board

v. 3.9

  • [ ] rollback on error

v. 4.0

  • [ ] replace commander with yargs and rename args

v. 4.1

  • [ ] run multiple instances

Thanks to

Chris Lea for these articles

  • https://nodesource.com/blog/running-your-node-js-app-with-systemd-part-1
  • https://nodesource.com/blog/running-your-node-js-app-with-systemd-part-2

License

The MIT License (MIT)

Copyright (c) 2017-2019, braces lab

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.