Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cbush/typescript-cli-template
Typescript CLI template
https://github.com/cbush/typescript-cli-template
Last synced: 11 days ago
JSON representation
Typescript CLI template
- Host: GitHub
- URL: https://github.com/cbush/typescript-cli-template
- Owner: cbush
- License: mit
- Created: 2022-05-10T18:20:01.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-08T20:11:35.000Z (over 1 year ago)
- Last Synced: 2024-10-03T12:42:43.438Z (4 months ago)
- Language: TypeScript
- Size: 438 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# typescript-cli-template
Typescript CLI template## Development
### Build & Run
```sh
npm i
npm run build
node .
```### Add Commands
Add commands to `src/commands/`. The CLI automatically picks up any non-test .ts
file that default-exports a `yargs.CommandModule`. See existing commands for
example.