generator-node-express-typescript v4.2.2
TypeScript NodeJS Generator
This is a fork of this generator but I added express to it.
I'm a minimal Yeoman generator for creating NodeJS express servers using TypeScript. I let you quickly setup a project with latest available tools and best practices.
I use:
- npm - as task runner.
- jest - as testing and coverage framework to write specs in TypeScript itself. You can choose to use mocha or ava instead.
You want to know if you can change any of these? Of course, why not? It is your package after all. I simply get down to business of generating, no questions asked and then quiety get out of the way!
Usage
Install generator-node-express-typescript globally. If you are planning to use gulp, install gulp-cli globally.
$npm install -g generator-node-express-typescriptCreate a new directory and cd into it.
$mkdir my-new-project && cd $_Run the generator.
$yo node-typescriptYou can choose to use mocha as your test framework using command - $yo node-typescript --mocha
You can choose to use ava as your test framework using command - $yo node-typescript --ava
Generate a new class and test file.
$yo node-typescript:classlib MyNewClass [--mocha | --ava]Highlights of the latest release
- I use latest version of TypeScript.
- I use yarn in place of npm if it's available.
- I use jest which is a "batteries-included" testing framework with coverage built-in (optionally mocha or ava). You write tests in TypeScript itself.
- I use prettier integrated with tslint to provide no-fuss code formatting and linting.
I need no global dependencies. Every dependency such as TypeScript and tslint is installed as local dev dependency allowing you to freely use different versions of these for different packages.
Integration with VS Code
I configure
build,clean,lint,coverage,formatandtesttasks that you can run usingRun Taskoption.- You can directly run currently open source file using task
Run current file. I use ts-node to provide this functionality. You can debug currently open source file using
Debug filelaunch configuration. You can also debug currently open test file usingDebug testlaunch configuration without the need of compiling it first. Here is the preview -
License
MIT
