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

make-self-extracting-bin

v1.0.0

Published

Application for creating self extracting shell scripts

Downloads

8

Readme

make-self-extracting-bin

A command-line tool for creating self-extracting shell-scripts.

Github: https://github.com/danishcake/make-self-extracting-bin
NPM: https://www.npmjs.com/package/make-self-extracting-bin

Based on https://www.npmjs.com/package/make-self-extracting

Usage

Via npx

npx make-self-extracting-bin \
  --pre-extract "echo Extracting..." \
  --post-extract "echo Installing...; ./prepare.sh; ./install.sh; ./cleanup.sh" \
  --output ./install.sh \
  ./prepare.sh ./install.sh ./cleanup.sh

Via globally installed script

# Run once, ahead of time
npm install -g make-self-extracting-bin

make-self-extracting-bin \
  --pre-extract "echo Extracting..." \
  --post-extract "echo Installing...; ./prepare.sh; ./install.sh; ./cleanup.sh" \
  --output ./install.sh \
  ./prepare.sh ./install.sh ./cleanup.sh

How it works

The files specified when building the script are added to an archive (usually a .tar.gz). This archive, the pre-extraction, post-extraction and a small amount of fixed plumbing are concatenated into a single script file, that when run:

  1. Runs the pre-extract script
  2. Extracts the embedded archive to a temporary directory
  3. Runs the post-extract script, changing CWD to the temporary directory.
  4. Deletes the temporary directory

Options

| Option | Description | | ------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------- | | -t, --type <zip|tar> | The type of archive to create. Must be tar or zip. Defaults to tar, and generally safe to leave as this value | | -c, --compress-level <0-9> | The compression level. A value of zero disables compression | | -a, --pre-extract string | Script contents to run prior to extracting the embedded archive. Multiple commands can be separated by semi-colons | | -b, --post-extract string | Script contents to run after extracting the embedded archive. Multiple commands can be separated by semi-colons | | -n, --pre-extract-file | Script file to run prior to extracting the embedded archive. Overrides --pre-extract. This can be used to embed more significant shell scripts | | -m, --post-extract-file | Script file to run after extracting the embedded archive. Overrides --post-extract | | -q, --omit-header | If the 'created with...' notice should be omitted. I don't mind | | -r, --root | The root path for entries in the archive. Files will have this leading path stripped. If omitted all files will added to the root | | -f, --files | List of files to embed in the script. This is the default option, so -f does not need to be specified | | -o, --output | File to write output to. If omitted, output is written to standard out |