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

shipr

v3.0.1

Published

Universal automation and deployment tool written in JavaScript.

Downloads

15

Readme

Shipr

Gitter Build Status Dependency Status devDependency Status Inline docs

Shipit logo

Shipr is forked from shipit, and can use all shipit plugins.

Shipit is an automation engine and a deployment tool written for node / iojs.

Shipit was built to be a Capistrano alternative for people who don't know ruby, or who experienced some issues with it. If you want to write tasks in JavaScript and enjoy the node ecosystem, Shipit is also for you.

You can automate anything with Shipit but most of the time you will want to deploy your project using the Shipit deploy task.

Features:

Install

Globally

npm install --global shipr

Locally

npm install --save-dev shipr

Getting Started

Once shipr is installed, you must create a shiprfile.js.

If you are familiar with grunt or gulp, you will feel at home.

Create a shiprfile.js

module.exports = function (shipr) {
  shipr.initConfig({
    staging: {
      servers: 'myproject.com'
    }
  });

  shipr.task('pwd', function () {
    return shipr.remote('pwd');
  });
};

Launch command

shipr staging pwd

Deploy using Shipit

You can easily deploy a project using Shipit and its plugin shipit-deploy.

Example shiprfile.js

module.exports = function (shipr) {
  require('shipit-deploy')(shipr);

  shipr.initConfig({
    default: {
      workspace: '/tmp/github-monitor',
      deployTo: '/tmp/deploy_to',
      repositoryUrl: 'https://github.com/user/repo.git',
      ignores: ['.git', 'node_modules'],
      rsync: ['--del'],
      keepReleases: 2,
      key: '/path/to/key',
      shallowClone: true
    },
    staging: {
      servers: '[email protected]'
    }
  });
};

To deploy on staging, you must use the following command :

shipr staging deploy

You can rollback to the previous releases with the command :

shipr staging rollback

Usage

shipr <environment> <tasks ...>

Options

servers

Type: String or Array<String>

Servers on which the project will be deployed. Pattern must be [email protected] if user is not specified (myserver.com) the default user will be "deploy".

key

Type: String

Path to SSH key

Events

You can add custom event and listen to events.

shipr.task('build', function () {
  // ...
  shipr.emit('built');
});

shipr.on('built', function () {
  shipr.start('start-server');
});

Shipit emits the init event once initialized, before any tasks are run.

Methods

shipr.task(name, [deps], fn)

Create a new Shipit task, if you are familiar with gulp, this is the same API. You can use a callback or a promise in your task.

For more documentation, please refer to orchestrator documentation.

shipr.task('pwd', function () {
  return shipr.remote('pwd');
});

shipr.blTask(name, [deps], fn)

Create a new Shipit task that will block other tasks during its execution (synchronous).

If you use these type of task, the flow will be exactly the same as if you use grunt.

shipr.blTask('pwd', function () {
  return shipr.remote('pwd');
});

shipr.start(tasks)

Run Shipit tasks.

For more documentation, please refer to orchestrator documentation.

shipr.start('task');
shipr.start('task1', 'task2');
shipr.start(['task1', 'task2']);

shipr.local(command, [options], [callback])

Run a command locally and streams the result. This command take a callback or return a promise. It returns a result object containing stdout, stderr and the child process object.

shipr.local('ls -lah', {cwd: '/tmp/deploy/workspace'}).then(function (res) {
  console.log(res.stdout);
  console.log(res.stderr);
  res.child.stdout.pipe(...);
});

shipr.remote(command, [options], [callback])

Run a command remotely and streams the result. This command take a callback or return a promise.

If you want to run a sudo command, the ssh connection will use the TTY mode automatically.

It returns an array of result objects containing stdout, stderr and the child process object. The list of results matchs the list of servers specified in configuration.

shipr.remote('ls -lah').then(function (res) {
  console.log(res[0].stdout); // stdout for first server
  console.log(res[0].stderr); // stderr for first server
  res[0].child.stdout.pipe(...); // child of first server

  console.log(res[1].stdout); // stdout for second server
  console.log(res[1].stderr); // stderr for second server
  res[0].child.stdout.pipe(...); // child of second server
});

shipr.run(command, [options])

Run commands in seres.

more usage: TODO

shipr.remoteCopy(src, dest, [options], [callback])

Make a remote copy from a local path to a dest path.

shipr.remoteCopy('/tmp/workspace', '/opt/web/myapp').then(...);

shipr.log()

Log using Shipit, same API as console.log.

shipr.log('hello %s', 'world');

Dependencies

Customising environments

You can overwrite all default variables defined as part of the default object.

module.exports = function (shipr) {
  shipr.initConfig({
    staging: {
      servers: 'staging.myproject.com',
      workspace: '/home/vagrant/website'
      branch: 'dev'
    },
    production: {
      servers: [{
        host: 'app1.myproject.com',
        user: 'john',
      }, {
        host: 'app2.myproject.com',
        user: 'rob',
      }],
      branch: 'production',
      workspace: '/var/www/website'
    }
  });

  ...
  shipr.task('pwd', function () {
    return shipr.remote('pwd');
  });
  ...
};

Async Config

If you can't call shipr.initConfig(...) right away because you need to get data asynchronously to do so, you can return a promise from the module:

module.exports = function (shipr) {
  return getServersAsync().then( function( servers ) {
    shipr.initConfig({
      production: {
        servers: servers,
        // ...
      }
    })
  } )
}

If you need to use a function that works with callbacks instead of promises, you can wrap it manually:

module.exports = function (shipr) {
  return new Promise( function( resolve ) {
    getServersAsync( function( servers ) {
      shipr.initConfig({
        production: {
          servers: servers,
          // ...
        }
      })
      resolve()
    } )
  } )
}

Known Plugins

Official

Third Party

Who use Shipit?

License

MIT