tsp-create
v1.1.3
Published
A CLI tool to create a new TypeScript project
Downloads
3
Readme
tsp-create
tsp-create
is a command-line interface (CLI) tool for quickly setting up a new TypeScript project from a predefined template.
Installation
To install tsp-create
, globally run:
npm install -g tsp-create
Usage
Creating a New Project
To create a new TypeScript project using tsp-create
, execute the following command:
tsp create <project-name>
Commands
After creating the project, navigate into its directory and install dependencies:
cd <project-name>
npm install
You can then use the following npm scripts to manage your project:
Build the project:
npm run build
Start the project:
npm run start
Start the project in development mode:
npm run start:dev
Start the project in production mode:
npm run start:prod
License
This project is licensed under the MIT License