emhashef/typoway

There is no license information available for the latest version (v1.0.0-beta2) of this package.

Laravel package for generating typescript based routes

v1.0.0-beta2 2025-02-13 13:35 UTC

This package is not auto-updated.

Last update: 2025-03-27 14:08:11 UTC


README

TypoWay is a Laravel package that generates TypeScript route definitions, including API endpoints, URLs, and Inertia.js form helpers. It provides a strongly typed way to work with routes in TypeScript-based front-end applications.

⚠️Warning This package is currently in beta and may have breaking changes. Use with caution in production environments.

Features

  • πŸš€ Generate API route definitions with TypeScript types
  • πŸ”— Generate URL helpers for clean and structured navigation
  • ⚑ Inertia.js form helpers for better integration with Laravel-Inertia apps
  • πŸ”₯ Automatic TypeScript typing for request parameters

Note

TypoWay utilizes the dedoc/scramble package to analyze Laravel routes and extract type definitions.

Installation

Install the package via Composer:

composer require emhashef/typoway --dev

Usage

Run the command to generate TypeScript route files:

php artisan typoway:generate

Options

  • --apis β†’ Generate API routes only
  • --inertia β†’ Generate Inertia.js routes only

Example:

php artisan typoway:generate --apis

Output

Running the command generates the following TypeScript files:

  • routes.ts – Contains all routes, APIs, and Inertia form helpers.
  • routes.urls.setup.ts – Handles URL generation.
  • routes.apis.setup.ts – Handles API request methods.
  • routes.inertia.setup.ts – Handles Inertia form handling.

Example Output:

export const urls = {
  test: {
    index: () => `/api/test`,
    storeArray: () => `/api/store-array`,
  },
};

export const apis = {
  test: {
    index: (data?: { name?: string }): ApiResponse<{ name?: string }> =>
      request("get", urls.test.index(), data),
    storeArray: (data?: { bob?: number[] }): ApiResponse<any> =>
      request("post", urls.test.storeArray(), data),
  },
};

Configuration

To publish the configuration file, run the following command:

php artisan vendor:publish --tag=typoway

You can configure excluded route names in the config/typoway.php file. These routes will not be included in the generated TypeScript definitions.

return [
    'except-routes' => [
        "filament*",
        "scramble*",
        "debugbar*",
        "dusk*",
        "ignition*",
        "livewire*",
    ]
];

Modify this array to exclude additional route names as needed. Wildcards (*) can be used to match multiple routes.

License

This package is open-source and released under the MIT License.