simplistiCLI is an open-source CLI framework designed for building straightforward command-line tools with ease. You are free to fork this project and mold it into your own CLI creation—customize, extend, and make it your own!
- Minimal, easy-to-understand structure
- Add your own commands by creating files in the
cmds/directory - Great starting point for simple, scriptable CLIs
- Open-source and community-friendly
- Clone or fork this repository
- Add your commands in the
cmds/folder - Run your CLI with
node index.js <command> [args]or make it executable as a global tool
simple Hello
simple help
simple echo Hello, world!
simple cal
simple weather San FranciscoTo install this CLI, run npm install -g simplisticli in your terminal or go to the npm page
- Mainpage: simplisticli
- Github Repo: simplistiCLI - Github
- npm Package: simplistiCLI - npm package
Feel free to open issues or pull requests! This project is meant to be a foundation for your own CLI ideas.
- Do not add specific, one-off commands.
- Pull requests should only improve existing commands or add general-purpose commands that could be useful to many users.
A version using the commander library for more advanced CLI features is coming soon!
License: MIT