Command-line interface applications written using Node.js. This project is setup in a way for easy extension. After setup add a new custom script by adding a new file to the commands/
directory. Then reference that command from the terminal by the unique filename you gave it. (cast customscript
)
This setup will clone the project, install dependencies, and create a link to the custom scripts.
- Save the project to your GitHub account (click here).
- Clone the project locally using
git clone
. - Install project dependencies via
npm install
. - Setup the primary binary via
npm link
orsudo npm link
. - Run any command via
cast mycommand
.
This project is in active development, so new scripts are routinely added. To receive these updates you'll need to setup a remote reference and pull changes down occasionally.
git remote add upstream https://github.com/wurde/scripts.git
git pull upstream master
There is a vision that guides development. Learn more in VISION.md.
For details on planned features and progress refer to the Trello Board.
Scripts is released under the MIT License.