typescript-fastify-starter

1.0.2 • Public • Published
logo

Fastify with TypeScript's application generator.

NPM Version Package License NPM Downloads


🧐 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

Dependencies (4)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i typescript-fastify-starter

    Weekly Downloads

    0

    Version

    1.0.2

    License

    MIT

    Unpacked Size

    10 kB

    Total Files

    13

    Last publish

    Collaborators

    • limkyungmin