1.0.2 ā€¢ Published 4 years ago

typescript-fastify-starter v1.0.2

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

Fastify with TypeScript's application generator.

šŸ§ What is it?

Creates a new typescript fastify application. application is configured to use TypeScript instead of plain JavaScript.

šŸ¤” Why typescript-fastify-starter?

Node Js is great for the rapid development of web-projects, but is often neglected because of the lack of type safety. TypeScript solves this issue and (along with its linter file) can even make your code more robust than some other static languages like Java.

āš™ļø Installation

$ npm install -g typescript-fastify-starter

šŸš€ Quick Start

The quickest way to get started is use npx and pass in the name of the project you want to create. If you don't specify a project name, the default typescript-fastify-starter will be used instead.

1. Create the app

$ npx typescript-fastify-starter "project name"

Choose the template you want. We will create more templates later.

Start your typescript-fastify-starter app in development mode at http://localhost:3000/

$ cd "project name" && npm run start

šŸŽ  Available commands for the server.

  • Run the Server in production mode : npm run start.
  • Run the Server in development mode : npm run dev.
  • Run all unit-tests: npm run test.
  • Check for linting errors: npm run lint.

You may need to install nodemon separately if you do not currently have it installed on your machine.

ā›‘ Code Structure (default)

ā”‚
ā”œā”€ā”€ /src
ā”‚   ā”œā”€ā”€ /routes
ā”‚   ā”‚   ā””ā”€ā”€ index.route.ts
ā”‚   ā”‚
ā”‚   ā”œā”€ā”€ /test
ā”‚   ā”‚   ā””ā”€ā”€ index.test.ts
ā”‚   ā”‚
ā”‚   ā”œā”€ā”€ app.ts
ā”‚   ā””ā”€ā”€ server.ts
ā”‚
ā”œā”€ā”€ .gitignore
ā”œā”€ā”€ jest.config.js
ā”œā”€ā”€ package-lock.json
ā”œā”€ā”€ package.json
ā””ā”€ā”€ tsconfig.json

šŸ’³ License

MIT

šŸ¤ Contributors