imjuni / fast-maker

CLI to generate route configuration using directory structure

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fast-maker

ts Download Status Github Star Github Issues NPM version License ci codecov code style: prettier

fast-maker generate fastify.js route configuration using by directory structure.

Why fast-maker?

fastify.js already have auto route mechanics using fastify-autoload. But why you have to use fast-maker?

  1. Static analysis: fast-maker generate TypeScript source code. Because it help to find error in compile-time, not runtime
  2. Complex Variable: You can use like that: /person/[kind]-[id]/. It help to get id and kind of id, for example serial-number and id or db-pk and id
  3. Next.js: fast-maker use the same mechanics as Next.js
  4. fast-maker support a beautiful cli-interface

Table of Contents

Getting started

npx fast-maker init
npx fast-maker route

You can create configuration file using init command. And you can run route command, fast-maker generate route.ts file on your output directory in configuration file.

You can see this mechanics!

fast-maker-showcase.gif

How it works?

fast-maker using TypeScript Compiler API. So fast-maker exactly know handler function and route option in each file.

graph LR

A[route file] --> fast-maker
subgraph fast-maker
direction TB
C[TypeScript Compiler API]-->|extract <br/>handler function,<br /> option variable|B[fast-maker]
end
fast-maker-->|extract <br />route path|D[route.ts]

The image below briefly shows how the directory is converted to route configurations.

AS-IS (directory structure) TO-BE (route function)
directory_structure.png route_config_ts.png

Installation

npm i fast-maker --save-dev

Usage

You can see help from --help option.

# display help for each commands
npx fast-maker --help

# display help for route commands
npx fast-maker route --help

# display help for watch commands
npx fast-maker watch --help

# display help for init commands
npx fast-maker init --help

Also you can see detail option here.

Routing

fast-maker has a file-system based route configuration. This concept borrowed from Next.js routing system. But one difference is that HTTP Method is separated by file-system.

HTTP Method

use file-system.

handlers/
├─ get/
│  ├─ hero/
│  │  ├─ [name].ts
├─ post/
│  ├─ hero.ts
├─ put/
│  ├─ hero/
│  │  ├─ [name].ts
├─ delete/
│  ├─ hero/
│  │  ├─ [name].ts

get, post, put, delete directory represent HTTP Method. Also you can use options, patch, head, all directory.

Route options

You can pass RouteShorthandOptions option like that,

export const option: RouteShorthandOptions = {
  schema: {
    querystring: schema.properties?.Querystring,
    body: schema.properties?.Body,
  },
};

You have to named export and variable name must be a option.

Route handler

You can pass route handler function like that,

import { FastifyRequest } from 'fastify';
import type { IReqSearchPokemonQuerystring, IReqSearchPokemonParams } from '../../interface/IReqSearchPokemon';

export default async function (
  req: FastifyRequest<{ Querystring: IReqSearchPokemonQuerystring; Params: IReqSearchPokemonParams }>,
) {
  console.debug(req.query);
  console.debug(req.body);

  return 'hello';
}

You have to non-named export (aka default export). Also you can use arrow function and you can use any name under TypeScript function name rule, as well as type arguments perfectly applied on route configuration

Variable in Route Path

File or Directory name surrounded square bracket like that,

handlers/
├─ get/
│  ├─ hero/
│  │  ├─ [name].ts

Complex variable, No problem.

handlers/
├─ get/
│  ├─ hero/
│  │  ├─ [affiliation]-[name].ts

This route path access like that: curl http://localhost:8080/hero/marvel-ironman

That's it. fast-maker takes care of the rest.

Example using fastify.js

A complete example of using fast-maker can be found at Ma-eum.

Relate To

  • ts-morph
    • TypeScript Compiler API wrapper

Roadmaps

  • display each route path in cli-table
  • add new option silent
  • documentation site
  • add more test

License

This software is licensed under the MIT.

About

CLI to generate route configuration using directory structure

License:MIT License


Languages

Language:TypeScript 97.6%Language:JavaScript 2.2%Language:Shell 0.2%