1.0.0 • Published 9 months ago

create-typescript-base v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
9 months ago

Getting Started with TypeScript

This repository provides a basic template to help you get started with TypeScript.

What is TypeScript?

TypeScript is a superset of JavaScript that adds static type-checking and other features to help developers write more robust and maintainable code.

Installation

To start using this template with TypeScript in your project, you'll need to have Node.js installed.

  1. Install TypeScript globally using npx (Node Package eXecute):

    npx create-typescript-base [project-name]

    example

    npx create-typescript-base my-ts-backend
  2. Run the project in development mode

    npm run dev
  3. Build the project

    npm run build
  4. Build and Run the project in production

    npm start