jmb

1.2.4 • Public • Published

JMB

JMB is a scripts manager.

Installation

npm i -g jmb

Commands

First, you must init/setup :

jmb init

And you can edit .jmbrc :

{
    "scripts": [
        {
            "name": "run", // Required. Used for "jmb exec <name>"
            "clear": false, // Optional (default = false). If set to "true", clear console on start 
            "steps": [
                {
                    "displayName": "Starting", // Required. Used for show execution status
                    "run": "node ." // Required. The command to execute on step start
                }
            ]
        }
    ]
}

Save and close file.

For start a script, do :

jmb exec <name> [--suppress]

--suppress: If set, hide output overflow (2 lines)

Readme

Keywords

none

Package Sidebar

Install

npm i jmb

Weekly Downloads

0

Version

1.2.4

License

MIT

Unpacked Size

6.31 kB

Total Files

10

Last publish

Collaborators

  • julman_dev