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

unshell

v0.10.3

Published

Set your shell free

Downloads

6

Readme

un shell

Set your shell free !

Combine the flexibility of a programming language with the knowledge of shell command. As developer, sometimes, we need to run shell scripts. It will be cool to do so with the familiarity of a programming language. An an ops, sometimes, we need to run complex shell scripts. It will be cool to do so with the power of a programming language.

Features

  • Light: There are no dependencies
  • Easy: A small abstraction over child_process
  • Async: Work with async/await command
  • Testable: Unshell script are easily testable because they yield execution control

Setup

Execute script through Shell

npm install -g unshell

Embedded script inside apps

npm install unshell

Usage

Execute script through Shell

Execute script through unshell runtime

Usage:
  unshell COMMAND [SCRIPT_PATH] [ARGS...]

Commands:
  help      Print this help message
  run       run a script through unshell runtime

Given the script: pause.js to pause all docker containers

module.exports = function * pause () {
  const ids = yield * fetchContainerIds()

  for(const id of ids) {
    yield `docker pause ${id}`
  }
}

function * fetchContainerIds () {
  const ids = yield `docker ps -q --no-trunc`

  return ids.split('\n').filter(Boolean)
}

Run it through unshell

unshell run pause.js

Embedded script inside apps

Given the precedent script pause.js Run it with zeit/micro

module.exports = (req, res) => {
  const {resolve} = require('path')
  const {unshell} = require('unshell')

  try {
    const script = require(resolve('./scripts/pause.js'))
    unshell({env: process.env})(script)

    res.end('OK')
  } catch (err) {
    res.end('NOK')
  }
}

Examples

Here is some examples of what you can do with unshell

Contribute

Please check out the issues labeled help wanted or good-first-issue. Try npx good-first-issue unshell

License

The code is available under the MIT license.