1.10.3 • Published 4 years ago

clipman v1.10.3

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

clipman

Helper to write and run nodejs apps from the terminal.

Install

npm install --global clipman

Quick start

clipman init hello-world

This creates a new clipman app

You can now run your new clipman app

clipman run hello-world
Hello world!

You can also see the help section:

clipman help hello-world
hello-world v1.0.0  | Issue greetings

* Usage

hello-world <options>

* Options

--name       string     Who to greet (optional, default: "world")

made with clipman

Let's try to pass it an option

clipman run hello-world --name javascript
Hello javascript!

Let's change our hello-world/clipman.json:

{
  "name": "hello-world",
  "version": "1.0.0",
  "description": "Issue greetings",
  "entry": "main.js",
  "options": {
    "name": {
      "description": "Who to greet",
      "default": {
        "value": "world"
      }
    }
  }
}

Change world by node, save the file and then:

clipman run hello-world
Hello node!

Docs

1.10.3

4 years ago

1.10.2

4 years ago

1.10.1

4 years ago

1.10.0

4 years ago

1.9.0

4 years ago

1.8.2

4 years ago

1.8.1

4 years ago

1.8.0

4 years ago

1.7.14

4 years ago

1.7.12

4 years ago

1.7.13

4 years ago

1.7.11

4 years ago

1.7.9

4 years ago

1.7.10

4 years ago

1.7.8

4 years ago

1.7.7

4 years ago

1.7.6

4 years ago

1.7.5

4 years ago

1.7.3

4 years ago

1.7.4

4 years ago

1.7.2

4 years ago

1.7.1

4 years ago

1.7.0

4 years ago

1.6.1

4 years ago

1.6.0

4 years ago

1.5.0

4 years ago

1.4.0

4 years ago

1.3.0

4 years ago

1.2.0

4 years ago

1.1.0

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago