emhashef / typoway
Laravel package for generating typescript based routes
Requires
- php: ^8.1
- dedoc/scramble: ^0.11.23
- illuminate/support: ^10.0|^11.0
- spatie/invade: ^2.1
Requires (Dev)
- orchestra/testbench: ^8.0|^9.0
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.