Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.02 KB

README.md

File metadata and controls

34 lines (23 loc) · 1.02 KB

generator-express-typescript

Yeoman generator for express.js projects written in TypeScript.

What's in the box

This generator creates project with some fancy tools onboard:

  1. Express.js - simple nodejs web framework
  2. TypeScript - strongly-typed version of ES6
  3. tsd - tool for managing TypeScript definitions for JS libraries
  4. grunt or gulp - build tool
  5. Dockerfile - to run your project as a Docker container (optional)

Getting Started

First, install yeoman (if you haven't already)

$ npm install -g yo

To install generator-express-typescript from npm, run:

$ npm install -g generator-express-typescript

Finally, initiate the generator and answer some simple questions:

$ yo express-typescript

Notice, that you should have either grunt or gulp installed globally before launching this generator