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 🙏

© 2026 – Pkg Stats / Ryan Hefner

einsatz

v0.0.1

Published

This is a deployment package for the KraftwerkJS framework

Readme

EinsatzJS

This is the EinsatzJS deployment package for the KraftwerkJS framework. It provides after isntallation deploy, rollback, switch and indexing of releases on a remote server.

1. Installation

  • EinsatzJS can be installed either globally or locally in a project directory.

    • Install it globally with:
      $ npm install -g einsatz
    • Install it locally (in your project) with:
      $ npm install einsatz

2. Running the Script

  • Global Installation: If EinsatzJS has been installed globally, the script becomes accessible as a CLI tool system-wide. You can run it directly by using the einsatz command:
    $ einsatz
  • Local Installation: If EinsatzJS has been installed locally, the script will be available in the node_modules/.bin directory. You can run it by using npx:
    $ npx einsatz

3. Setting up EinsatzJS

  • After successfully installing EinsatzJS. The deploy.js config file has to be created and configured. EinsatzJS takes care of creating the file:

    $ einsatz setup
  • Running this command creates a config directory in your project directory, if it does not exist, and copies the deploy.js file into it.

    The deploy.js config file has to be edited with all necessary information regarding server authenication, the project and the git repository.

    • user is the user account for login into your server.
    • application is the application name and will define the project directory name.
    • agent will acquire your running ssh agent.
    • deployConfig requires your servers IP and port number.
    • In the repo details section Einsatz requires the URL of your git repository as well as the branch name, from which to deploy.
    • In the deployment details one can specify deploy method and nodeVersion to be used on the server, if multiple node versions are installed. (In beta only the Git deployer is implemented.)
    • In the SSH details the key for server login has to be specified.

4. Deploying through EinsatzJS

EinsatzJS provides the following deployment actions:

  • deployment:
    $ einsatz deploy
  • rollback:
    $ einsatz rollback
  • get release version:
    $ einsatz releases
  • switch release version:
    $ einsatz switch
    It is possible to switch to a specific release version by running:
    $ einsatz switch 12345678901234
    Without specifying the release version. EinsatzJS js will automatically fetch the information about the released versions and ask for the release version to switch to.