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.
- Host: GitHub
- URL: https://github.com/berzanorg/run
- Owner: berzanorg
- License: mit
- Created: 2022-10-14T12:35:06.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-14T14:02:35.000Z (over 2 years ago)
- Last Synced: 2025-03-12T23:33:19.337Z (2 months ago)
- Language: Rust
- Homepage:
- Size: 131 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ⚡ Run
A blazing-fast tool to manage end execute your scripts.#### 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`
```
### Print Scripts
> Command below displays all the scripts inside `run.yaml`.
```sh
run
```
### Run a Script
> You can run scripts by their name. You can also use an alias.
```sh
run c # or `run compile`
```