https://github.com/priyanshupz/its-ts-cli
A cli app to generate typescript project.
https://github.com/priyanshupz/its-ts-cli
Last synced: about 2 months ago
JSON representation
A cli app to generate typescript project.
- Host: GitHub
- URL: https://github.com/priyanshupz/its-ts-cli
- Owner: PriyanshuPz
- License: mit
- Created: 2023-08-20T12:24:31.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-08-20T13:00:41.000Z (over 1 year ago)
- Last Synced: 2025-03-28T18:54:51.458Z (about 2 months ago)
- Language: JavaScript
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# It's ts Cli
[](https://www.npmjs.com/package/its-ts)
[](https://github.com/p7uverma/its-ts-cli/blob/master/LICENSE)A CLI tool for creating TypeScript projects.
## Installation
You can install this CLI tool globally using npm:
```bash
npm install -g its-ts
```## Usage
Create a new TypeScript project:
```bash
its-ts create
```By default, the CLI will copy a template project and install its dependencies. You can use the `-f` or `--force` flag to overwrite an existing project with the same name.
## Example
Create a new TypeScript project named "my-ts-project":
```bash
its-ts create my-ts-project
```Navigate to the project directory:
```bash
cd my-ts-project
```Start the project:
```bash
npm start
```## Contributing
Contributions are welcome! Feel free to open issues and submit pull requests.
1. Fork the repository.
2. Create a new branch: `git checkout -b feature/your-feature-name`.
3. Make your changes and commit them: `git commit -am 'Add some feature'`.
4. Push to the branch: `git push origin feature/your-feature-name`.
5. Create a pull request.## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
---
Made with ❤️ by Priyanshu Verma