Skip to main content

Get started ๐Ÿ”ฉ๐Ÿ”ง

Using our rocket kit is very simple, you just have to follow these steps and that's it.

  • Install.

    To install you must use the following scripts

    npm:

    npm i next-rocket-kit

    pnpm:

    pnpm add next-rocket-kit

    yarn:

    yarn add next-rocket-kit

    bun:

    bun add next-rocket-kit
  • Open kit

    We must open our kit to use its tools, we can do it as follows, we import the createRocket function and destroy its response, each one will be a tool.

    Note ๐Ÿงช: You can use the kit configuration object to define which libraries and versions you will use with your.

    import { createRocket } from "next-rocket-kit";

    export const { onRoute, Http, OpenApi, onPrisma } = createRocket();