An open API service indexing awesome lists of open source software.

https://github.com/berzanorg/run

⚡ A blazing-fast tool to manage end execute your scripts.
https://github.com/berzanorg/run

Last synced: about 2 months ago
JSON representation

⚡ A blazing-fast tool to manage end execute your scripts.

Awesome Lists containing this project

README

        

# ⚡ Run
A blazing-fast tool to manage end execute your scripts.


Logo

#### Run:

- Can use [`scripts`](https://docs.npmjs.com/cli/v6/using-npm/scripts) of `package.json` and [`tasks`](https://deno.land/manual/tools/task_runner) of `deno.json`.
- Is blazing-fast, cuz it's written in Rust.
- Supports comments.
- Auto-sorts scripts alphabetically.
- Has smart error reporting.


## Install
For macOS, Linux, or Windows Subsystem for Linux.
```sh
# to do
```


## Usage

### Generate a `run.yaml` file.
> It will import scripts from `package.json` or `deno.json`, if any of them exists in the current directory.
```sh
run -i # or `run --init`
```


Logo


### Print Scripts
> Command below displays all the scripts inside `run.yaml`.
```sh
run
```


Logo


### Run a Script
> You can run scripts by their name. You can also use an alias.
```sh
run c # or `run compile`
```


Logo