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

@fneira/stack-up

v1.0.12

Published

Stack-up is a simple tool written in JavaScript that allows you to run multiple programs concurrently in the terminal. It is designed to be configurable through a json file, enabling you to specify the programs you want to run, their working directories,

Downloads

205

Readme

Stack-up

Stack-up is a simple tool written in JavaScript that allows you to run multiple programs concurrently in the terminal. It is designed to be configurable through a json file, enabling you to specify the programs you want to run, their working directories, and commands.

Using with npx

You can use stack-up without installing it globally by using npx:

npx @fneira/stack-up modules.json

This will download the latest version of stack-up and run it with the specified module.json file.

Installing globally

You can also install stack-up globally to use it as a command line tool:

npm install -g @fneira/stack-up

After installing it globally, you can run stack-up from any directory:

stack-up stack-up.json

Installation

Before using stack-up, ensure you have Node.js installed on your system. You can download it here.

  1. Clone this repository:
git clone https://github.com/Bubexel/stack-up.git

Navigate to the project directory:

cd stack-up

Install dependencies:

npm install

Configuration

To use stack-up, you'll need to create a stack-up.json file or name you wish. This file will contain an array of objects, each representing a program you want to run concurrently. Here's an example of json file:

[
    {
        "name": "My program",
        "enabled": true,
        "workingDir": "/home/user/myprogram/",
        "command": "npm run --prefix {{workingDir}} start"
    },
    {
        "name": "Another program",
        "enabled": true,
        "workingDir": "/path/to/another/program/",
        "command": "cd {{workingDir}} && node index.js"
    }
]
  • name: A descriptive name for your program.
  • enabled: Set to true to enable the program to run as default option, or false to disable it.
  • workingDir: The working directory where the program should be executed from.
  • command: The command to run the program. Use {{workingDir}} as a placeholder for the orkingDir.

You can add as many objects as needed to run multiple programs concurrently.

Usage

Once you have your stack-up.json file configured, you can run stack-up:

npm start my-stack-up-file.json

This will start all the programs specified in the stack-up.json file concurrently in the same terminal window using the concurrently library.

Running with --direct or -d

You can use the --direct or -d flag to execute the enabled programs immediately, without showing the interactive menu. This runs all enabled commands from your configuration file right away, skipping any prompts.

Example:

stack-up stack-up.json --direct

or

stack-up stack-up.json -d

Author

  • Ferran Neira

License

This project is licensed under the MIT License - see the LICENSE file for details.