New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

tsp-create

Package Overview
Dependencies
Maintainers
0
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tsp-create

A CLI tool to create a new TypeScript project

latest
Source
npmnpm
Version
1.1.3
Version published
Weekly downloads
0
Maintainers
0
Weekly downloads
 
Created
Source

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

Keywords

typescript

FAQs

Package last updated on 08 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts