create-typescript-service
v1.1.2
Published
Create a TypeScript microservice
Downloads
6
Readme
create-typescript-service
A command line utility to create a TypeScript microservice template quickly.
Install
$ npm i -g create-typescript-service
Usage
$ create-typescript-service <service_name>
$ create-typescript-service my_new_microservice
What Gets Created
.
├── node_modules
├── Dockerfile
├── .dockerignore
├── package.json
├── src
│ ├── index.ts
│ └── routes
│ └── BasicRouter.ts
├── tests
│ ├── index.test.ts
│ ├── sample.test.ts
└── tsconfig.json