#generator #documentation-generator #api #cli #nextjs #route-handler

app next_api_reference

A NextJS 13 route handler api reference generator

3 unstable releases

0.2.1 Oct 27, 2023
0.2.0 Oct 27, 2023
0.1.0 Oct 8, 2023

#1974 in Command line utilities

Download history 2/week @ 2024-02-12 14/week @ 2024-02-19 22/week @ 2024-02-26 52/week @ 2024-04-01

52 downloads per month

Apache-2.0

21KB
433 lines

Next API Reference Generator

NOTE: This crate is under development and in its very early stages. You may encounter bugs. Open up a issue or create a PR if you do.

This project aims to generate an API Reference of Route Handler found in NextJS 13+.

Currently the aim is to provide atleast 2 generators:

  • JSON
  • Static HTML reference

The documentation will be updated as more work is done.

Usage: next_api_reference [OPTIONS] --output <OUTPUT>

Options:
  -v, --verbose              Enable verbose logging
  -l, --location <LOCATION>  Location to find route handlers from [default: ./]
  -o, --output <OUTPUT>      The directory to output to
  -j, --json
  -h, --help                 Print help
  -V, --version              Print version

Goals

  • Basic JSON Generator.
  • Basic HTML Generator.
  • Parse comments to add documentation to API endpoints.
  • Implement basic logging.
  • Better comment parsing.

HTML Generator (default)

The HTML generator is the default generator. It outputs a basic static site which can be changed as necessary.

The generator overrides the files so make sure not to call it at the same location if you have made changes to the site.

Example command

next_api_reference -v -l ./app -o ./output

JSON Generator

The JSON generator outputs your api reference to a JSON file. It is meant to be used in case you want to write your own api reference site. You can use the data generated from this generator and parse it to create a reference site that suites your need.

Example command

next_api_reference -l ./app -o ./output -j

-j flag is necessary to use the JSON generator.

Schema

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Schema for next_api_reference json generator",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "path": {
        "type": "string"
      },
      "method_metadata": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "method_type": {
              "type": "string"
            },
            "comment": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          },
          "required": ["method_type"]
        }
      }
    },
    "required": ["path", "method_metadata"]
  }
}

Sample output

[
  {
    "path": "/api/items",
    "method_metadata": [
      {
        "method_type": "GET",
        "comment": ["Get a list of all items"]
      },
      {
        "method_type": "POST",
        "comment": ["Create an item"]
      },
      {
        "method_type": "DELETE",
        "comment": ["Delete an item or a list of items"]
      }
    ]
  },
  {
    "path": "/api/items/count",
    "method_metadata": [
      {
        "method_type": "GET",
        "comment": ["Get a count of all items"]
      }
    ]
  }
]

Docstring

Docstring parsing is supported by this crate. However it is very crude at the moment.

Supported patterns

To create a docstring simply create a single line comment above the definition of the functon:

// This is a simple docstring
export async function GET(request: Request) {}

Block comments, while supported work differently in the different generators. For the HTML generator, only the first line will be shown, as for the JSON generator the entire string is provided in raw form and may require some extra processing.

The behavior of block comments in the HTML generator might change in the future.

Unsupported patterns

Unfortunately docstring parsing for something like this is currently not supported and the docstring will simply be ignored:

// This is a simple docstring
async function GET(request: Request) {}

export { GET };

Contributing

If you find a feature you need in this project that is lacking or a bug, check if a issue is already created for it, if not go ahead and create a issue.

To contribute to the the project simply:

  1. Fork the repository
  2. Create a new branch
  3. Do your magic
  4. Submit the PR

A better workflow and guide will be created in the future if this project gains popularity.

Dependencies

~11–20MB
~289K SLoC