1. @ts-engine/cli
Write TypeScript packages with optionally zero configuration.
@ts-engine/cli
Package: @ts-engine/cli
Created by: ts-engine
Last modified: Wed, 20 Apr 2022 15:07:03 GMT
Version: 3.0.4
License: MIT
Downloads: 355
Repository: https://github.com/ts-engine/ts-engine

Install

npm install @ts-engine/cli
yarn add @ts-engine/cli

ts-engine logo

ts-engine

Write TypeScript packages with optionally zero configuration.

Setting up new TypeScript packages is annoying. Installing and configuring the same packages over and over again is tedious and it is easy for tool versions to drift across multiple packages.

ts-engine aims to reduce package setup effort drastically. With just one dependency and optionally no configuration you can build, test and lint your packages.

Getting Started

Install the package.

 yarn add --dev @ts-engine/cli

Build and typecheck your code using Rollup, TypeScript and Babel.

 tse build src/index.ts

Run your app directly from its TypeScript entry file.

 tse run src/index.ts

Execute tests using Jest.

 tse test

Lint your code using ESLint and format it with Prettier.

 tse lint .

Documentation

Checkout the official docs over at https://ts-engine.dev.

Examples

Example Node.js applications and libraries can be found here.

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code