https://github.com/jannchie/ts-cli-app-template
An opinionated CLI app template with TypeScript
https://github.com/jannchie/ts-cli-app-template
Last synced: about 1 year ago
JSON representation
An opinionated CLI app template with TypeScript
- Host: GitHub
- URL: https://github.com/jannchie/ts-cli-app-template
- Owner: Jannchie
- License: mit
- Created: 2023-09-09T08:31:26.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-09T08:31:33.000Z (almost 3 years ago)
- Last Synced: 2025-02-15T07:32:28.026Z (over 1 year ago)
- Language: TypeScript
- Size: 31.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TS CLI App Template
This is a template for a CLI app written in TypeScript.
## Usage
Developing:
```bash
pnpm install
pnpm dev
```
We have integrated [@clack/prompt](https://github.com/natemoo-re/clack) and [commander.js](https://github.com/tj/commander.js#readme).
```log
┌ Welcome to TS CLI App Template!
│
● We are using @clack/prompts and commander.js.
│
◇ You can see the help message by running: ─╮
│ │
│ pnpm dev -h │
│ │
├────────────────────────────────────────────╯
│
◇ Is that cool?
│ yeah
│
└ Thanks for using TS CLI App Template!
```
You can see the help message by running:
```bash
pnpm dev -h
```
Building:
```bash
pnpm build
```
## License
MIT