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

unshackle

v1.1.0

Published

A JavaScript software release script runner.

Downloads

41

Readme

About

Unshackle is a small release scripting DSL for JavaScript projects. If releasing new versions of your JavaScript application involves running the same dozens of Git commands, intermixed with various CLI tools and manual by-a-human steps, it might be for you. In particular, unshackle aims to provide a simple language for combining a series of shell, human, and arbitrary JavaScript tasks.

Installation

npm install unshackle

Usage

Typical usage involves writing a script for your release that loads the unshackle package and uses it to execute a series of steps.

You can execute your script and view its output in the console. Prompts will pause and wait for your input.

For now, you must run your script from the working directory that any shell commands should start in.

#!/usr/bin/env node

const unshackle = require('unshackle')

// Create a bucket for remembering state throughout the run.
const state = {}

unshackle
.start('You are starting an example release. Good luck.')
// Print does what you expect.
.print('First on the agenda, listing files with ls.')

// Run executes string commands in a shell.
.run('ls')

// Prompts pause for user input.
.prompt('What is your favorite letter?', ['a', 'b', 'c'])

// JavaScript steps are functions that accept the output of preceding steps as
// input.
.run(letter => console.log(`Proceeding with a release for the letter ${letter}.`))

// JavaScript steps can return a promise to perform asynchronous tasks.
.run(() => {
  console.log('Crunching numbers, or something...')
  return new Promise (resolve => setTimeout(resolve, 3000))
})

// Use state to remember user input.
.prompt('What is your favorite letter now?', ['a', 'b', 'c'])

// Define a labeled mark in the process.
.run('trap-state', letter => state.letter = letter)

// Use the unshackle runner in a custom step, making sure to return the promise
// property, to block.
.run(() => unshackle.prompt(`Please manually confirm your appreciation for the letter ${state.letter}.`).promise)

// Use fail to abort and exit if something goes wrong.
.run(() => {
  if (Math.random() < .1) {
    unshackle.fail('Today is not a good day.')
  }
})

// Exit the entire process, with a message.
.done('Thanks! This release has been a success.')

Relocating your release script

If you want to edit a release script that is in source control, you might want to make a copy of it outside of your project. For example, if changes were to make your Git working directory dirty, for example, it could interfere with certain Git commands you might have in your release script.

Marks

Steps have an optional first argument for defining a mark. Marks are useful in that they create readable labels in the output of your release, and they give you a way to restart failed or incomplete releases at a certain step.

You can start from a mark by passing it as a second argument to unshackle.start. Starting from a mark skips all steps before that mark, with some exceptions. There may be steps that occur before the mark that are required to run, usually those that prompt the user for information, as no information is saved between executions of your release script. You can force such a step to always run, and prompts always run by default.

const state = {}

unshackle
// An optional step to print a message. It can also be used to specify a mark.
.start('Starting a release', 'deploy')

// This step is skipped, because it is before the "deploy" mark.
.run('echo "You should not be reading this"')

// At this point in time, prompts are never skipped and will always run.
.prompt('What type of release is this?', ['major', 'minor', 'patch'])

// The true parameter forces this step to run, even when starting from the
// "deploy" mark
.run(type => state.type = type, true)

// This step has the "deploy" mark, so when used, all steps from here on will
// run.
.run('deploy', () => {
  deployVersion(state.type)
})

// This prints a message and exits the entire process.
.done('Deployment complete')