felt is a simple command runner, written in Rust.
Install Rust first. Then you can use cargo
command to install felt
.
cargo
command is bundled with Rust.
cargo install felt
|Family |Supported|Note| |:--------------------|:-------:|:---| |Windows | 🚧 | | |macOS(Intel) | ✅ | | |macOS(Apple Silicon) | ❓ | | |Linux | ✅ | |
Put a .feltrc.toml
file in your home directory, which means ~/.feltrc.toml
file.
```toml [felt] root = true node_modules = true
[command] hello = "echo Hello! I\'m Felt!" nid = "npm install --save-dev" ```
You have defined hello
command above. Let's execute it
sh
felt hello
You will get output Hello! I'm Felt!
.
You can also execute them with args.
sh
felt nid esbuild react react-dom
felt
can execute command in ./node_modules/.bin/
directly. If you want this feature, set node_modules
in .feltrc.toml
to true
.
```sh
npm install esbuild
felt esbuild index.js --minify --oufile build/index.js ```
Notice: Currently, felt
searches node_modules
in just current execution directory. Even if other related directory has node_modules
, felt
cannot find it.
.feltrc.toml
is config file for felt
. It may be put in home directory.
```toml [felt]
root = true
node_modules = true
[command]
redis-up = "docker run -it --rm -p 6379:6379 redis"
countfiles = "ls -l | wc -l" ```
felt
uses .feltrc.toml
in below order.
If current directory is out of home(e.g. /tmp/
), append ~/.feltrc.toml
to last of above list.
If felt
found root = true
file. felt
stops traverse there.
For example, home .feltrc.toml
is:
```toml [felt] root = true node_modules = false
[command] hello = "echo Hello" hello2 = "echo Hi" ```
And ~/myproject/.feltrc.toml
is:
```toml [felt] node_modules = true
[command] hello = "echo Helloooooooooooooooo" ```
You can:
sh
cd ~/myproject
felt hello
felt hello2