Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 572 Bytes

README.md

File metadata and controls

22 lines (19 loc) · 572 Bytes

Minimal Node with TypeScript Starter

The main purpose of this repository is to have an up-to-date starter project to write Node code in TypeScript. The idea is to have no code at all, just an example of code and unit-test.

Requirements

To build and run this app you just need Node.js installed.

Getting started

  • Clone the repository
git clone --depth=1 https://github.com/pedrokehl/minimal-node-typescript-starter <project_name>
  • Install dependencies
cd <project_name>
npm install
  • Start the project
npm start