1.0.2 ā€¢ Published 4 years ago

generator-ts-project v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

generator-ts-project

This project is a light Yeoman generator for TypeScript projets scaffolding

This generator will allows you to customize and scaffold your next TypeScript project in seconds.

Besides providing the basic files and packages needed for TypeScript + Node.js development, the generator will helps you to install and setup other usefull development tools such as Nodemon, or Jest.

No more manual configuration required. šŸ¤Æ

Psst ! It can also generate development Docker files and workflow files for Github Actions.

See this package on NPM

Getting started

npm install -g yo
npm install -g generator-ts-project
yo ts-project <project-name>

Generated project's structure

When all options are enabled, this is what a generated project looks like :

.
ā”œā”€ā”€ Dockerfile
ā”œā”€ā”€ docker-compose.yml
ā”œā”€ā”€ jest.config.js
ā”œā”€ā”€ node_modules/
ā”‚   ā””ā”€ā”€ ...
ā”œā”€ā”€ nodemon.json
ā”œā”€ā”€ package.json
ā”œā”€ā”€ readme.md
ā”œā”€ā”€ src
ā”‚   ā””ā”€ā”€ main.ts
ā”œā”€ā”€ tests
ā”‚   ā””ā”€ā”€ main.test.ts
ā”œā”€ā”€ tsconfig.json
ā””ā”€ā”€ yarn.lock
1.0.2

4 years ago