New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

execmux

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

execmux

Execute multiple commands at once in a single window

latest
Source
npmnpm
Version
0.0.4
Version published
Weekly downloads
2
100%
Maintainers
1
Weekly downloads
 
Created
Source

About

If you need to run many processes, keep an eye on them, and don't like having lots of terminal tabs open this might be for you. execmux allows you to run all these processes in the same terminal window and still allow you to interact with them and view their output.

Install

npm install -g execmux

Running

First you need a config file to specify what to run.

my-project.json

{
  "commands": [
    {
      "title": "ls and exit",
      "command": ["ls", "/"]
    },
    {
      "title": "periodic output",
      "command": "./periodic-output.sh"
    },
    {
      "title": "bad process",
      "command": [
        "./missing-command.sh"
      ]
    },
    {
      "cwd": "../",
      "command": "npm run build:watch"
    }
  ]
}

Then run execmux my-project.json

Typing ? will give you options on what you can do while things are running.

Keywords

exec

FAQs

Package last updated on 19 Jun 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts