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

sb-self-deployment-tool

v0.4.1

Published

A tool that automatically deploy from your git when there is a change available. Featuring time interval lookup or trigger.

Downloads

13

Readme

Auto deployment tool

What it does

This tool will check the configured git repository for changes on remote for the branch you can also configure. If there are changes it will pull them and then run the build and deployment script that you specified.

Features

  • use environment variables
  • trigger by cron schedule
  • trigger by http server endpoint
  • send email for confirmation or error
  • detailed logs
  • run as CLI or from node_modules
  • create config file template via cli
  • specify config file to be used
  • specify working directory
  • specify a build shell script
  • specify a deploy shell script
  • specify a success shell script
  • specify an error shell script
  • full typescript support

Getting started

Global install (recommended)

  1. install: npm install -g sb-self-deployment-tool
  2. create config: sb-deploy-tool -i OR sb-deploy-tool --init OR sb-deploy-tool -i my.config.json OR sb-deploy-tool --init my.config.json
  3. change the config to your needs (if not specified otherwise there will be a config.json)
  4. Run: sb-deploy-tool to use config.json. To specify the config file: sb-deploy-tool -c my.config.json OR sb-deploy-tool --config my.config.json

Use as dependency

  1. install: npm install --save sb-self-deployment-tool
  2. import: const Runner = require('sb-self-deployment-tool') OR TypeScript: import {Runner} from 'sb-self-deployment-tool'
  3. use:
  • create a runner: const runner = new Runner();
  • you can set a custom transport for mail: runner.setupMailTransport(transport?: nodemailer.Transport); // see nodemailer docs for details
  • start runner with config: runner.runFromConfig('./config.json');

Config Parameters

Standard way

{
  "workDir": ".", // optional, default: "." the directory where the tool should work in and where the git is
  "git": {
    "reset": true, // if set to true the tool will execute a git reset --hard before git oull
    "repository": "[email protected]:sittingbool/sb-self-deployment-tool.git", // make sure to use the output of git remote show origin
    "branch": "develop" // the branch to watch for changes
  },
  "trigger": { // how should the deplyoment be triggered
    "cron": "*/30 * * * * *", // optional, a standard cron schedule, for details check node-cron on npm, if this is not set there will be no cron job running
    "webInterface": { // optional, if set this will create a http web server
      "port": 3000, // the port the server should listen on
      "endpoint": "/trigger", // the endpoint the server should be called for triggering, everything else will return 404. Tipp: to secure this use a cryptic endpoint
      "excludeEnvironments": ["production"] // you can set this to exclude starting a server on certain environments
    }
  },
  "email": { // optional, if set success and error emails will be sent
    "sender": "[email protected]", // the email shown in the From: field
    "recipients": ["[email protected]"], // a list of people to receive the emails
    "transport": { // the smtp configuration as used in nodemailer, check nodemailer for details
      "host": "smtp.ethereal.email",
      "port": 465,
      "secure": true,
      "auth": {
        "user": "account.user",
        "pass": "account.pass"
      }
    }
  },
  "envVar": "NODE_ENV", // this will set the variable on process.env to check for the environment
  "buildCmd": "echo 'build would be here'", // this will be run at build time if set
  "deployCmd": "echo 'deployment would be here'" // this will be run at deployment time if set
  "successCmd": "echo 'deployment succeeded command would be here'", // this will be run in case of a seccessful deployment if set
  "errorCmd": "echo 'deployment errored command with [error]'", // this will be run if an error occured if set, place [error] to where the error message should go
}

Using environment variables

You can set your config parameters simply by environment variables for running containers. THis is done by setting the config parameter to a string that is indicated with env: followed by the environment variable to use: "env:MY_VAR". See the following example:

{
  "workDir": "env:WORK_DIR",
  "git": {
    "repository": "env:GIT_REPO",
    "branch": "env:GIT_BRANCH"
  },
  "trigger": {
    "cron": "env:CRON_SCHEDULE",
    "webInterface": {
      "port": "env:WEB_INTERFACE_PORT",
      "endpoint": "env:WEB_ENDPOINT",
      "excludeEnvironments": "env:EXCLUDE_ENVS"
    }
  },
  "email": {
    "sender": "env:EMAIL_SENDER",
    "recipients": "env:EMAIL_RECIPIENTS",
    "transport": {
      "host": "env:EMAIL_HOST",
      "port": "env:EMAIL_PORT",
      "secure": "env:EMAIL_USE_SSL_TLS",
      "auth": {
        "user": "env:EMAIL_USER",
        "pass": "env:EMAIL_PASSWORD"
      }
    }
  },
  "envVar": "NODE_ENV",
  "buildCmd": "env:BUILD_CMD",
  "deployCmd": "env:DEPLOY_CMD",
  "successCmd": "env:SUCCESS_CMD",
  "errorCmd": "env:ERROR_CMD"
}

This can be combined with the standard way of configuring

Running using node

Default node runner

Please run the bin/index.js from the tools directory then. node bin/index.js or node bin/index.js -c path/to/config.json

PM2

Use the args for setting the config like so: (pm2.json)

{
  "apps" : [
    {
      "name": "Deploy-tool",
      "script": "/usr/local/lib/node_modules/sb-self-deployment-tool/bin/index.js",
      
      "args": "-c /var/www/cool-api/config.json", // here, not in script!
      
      "cwd": "/usr/local/bin/",
      "instances": 1,
      "autorestart": true
    }
  ]
}

Licence

MIT