blaspsoft / keysmith-react
A React & Inertia-powered API key management system for Laravel 12 React Starterkit, with secure token generation, revocation, and authentication.
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 0
Open Issues: 0
Language:TypeScript
Requires
- php: ^8.0|^8.1|^8.2
- illuminate/support: ^9.0|^10.0|^11.0|^12.0
Requires (Dev)
- orchestra/testbench: ^10.0
- phpunit/phpunit: ^10.0
README
Keysmith React - Laravel 12 React Starterkit API Token Management
Keysmith React is a Laravel 12 React Starterkit package that provides React.js components for managing API keys and tokens in your application. It offers a clean, user-friendly interface for creating, viewing, and revoking API keys with customizable permissions based on Laravel Breeze.
π₯ Keysmith React Video Tutorial
βΆοΈ Click the image above to watch the tutorial on YouTube!
β¨ Features
- π Easy API token generation and management
- π Built on Laravel Sanctum's secure token authentication
- π¨ Pre-built React components for quick integration
- π± Responsive and user-friendly interface
- βοΈ Flexible installation options (page or settings templates)
- π οΈ Customizable permissions system
π Requirements
Before installing Keysmith React, ensure your environment meets the following requirements:
- PHP 8.0+
- Laravel 12.x
- React 19.x
- Laravel Sanctum
π Installation
Install the package via Composer:
composer require blaspsoft/keysmith-react
Choose Your Installation Template
You can install one (or both) of the available templates:
Page Template
Adds a dedicated API tokens page at pages/api-tokens/index.tsx
.
php artisan keysmith:install page
Settings Template
Integrates API token management within the Laravel Vue Starterkit settings at pages/settings/api-tokens.tsx
.
php artisan keysmith:install settings
π§ Configuration
1οΈβ£ Configure Inertia Middleware
Add the following to your HandleInertiaRequests.php
middleware's share
method to enable API token flash messages:
'flash' => [ 'api_token' => fn () => session()->get('api_token'), ],
Full example:
public function share(Request $request): array { [$message, $author] = str(Inspiring::quotes()->random())->explode('-'); return [ ...parent::share($request), 'name' => config('app.name'), 'quote' => ['message' => trim($message), 'author' => trim($author)], 'auth' => [ 'user' => $request->user(), ], 'flash' => [ 'api_token' => fn () => session()->get('api_token'), ], ]; }
This ensures newly created API tokens are displayed to users.
2οΈβ£ Add Navigation Links
For the Page Template
Modify js/components/app-sidebar.tsx
:
const mainNavItems: NavItem[] = [ { title: "Dashboard", href: "/dashboard", icon: LayoutGrid, }, { title: "API Tokens", href: "/api-tokens", icon: KeyRound, }, ];
For the Settings Template
Modify js/layouts/settings/layout.tsx
:
const sidebarNavItems: NavItem[] = [ { title: "Profile", href: "/settings/profile", }, { title: "Password", href: "/settings/password", }, { title: "Appearance", href: "/settings/appearance", }, { title: "API Tokens", href: "/settings/api-tokens", }, ];
3οΈβ£ (Optional) Publish Configuration File
To customize settings, publish the config file:
php artisan vendor:publish --tag=keysmith-config --force
This creates config/keysmith.php
, where you can modify key permissions.
π Dependencies
Keysmith React requires Laravel Sanctum for API token authentication.
-
Install Laravel Sanctum:
composer require laravel/sanctum
-
Publish and run Sanctumβs migrations:
php artisan vendor:publish --provider="Laravel\Sanctum\SanctumServiceProvider" --tag="sanctum-migrations" php artisan migrate
-
Add the
HasApiTokens
trait to yourUser
model:use Laravel\Sanctum\HasApiTokens; class User extends Authenticatable { use HasApiTokens; // ... existing code ... }
π¦ Components
Keysmith React provides two main components located in /components
:
create-api-token-form.tsx
β Form for generating new API tokensmanage-api-tokens.tsx
β Component for viewing and managing existing tokens
These components are used in both Page and Settings templates.
π Routes
Keysmith uses the routes defined below:
Route::get('/settings/api-tokens', [TokenController::class, 'index'])->name('settings.api-tokens.index'); Route::get('/api-tokens', [TokenController::class, 'index'])->name('api-tokens.index'); Route::post('/api-tokens', [TokenController::class, 'store'])->name('api-tokens.store'); Route::put('/api-tokens/{token}', [TokenController::class, 'update'])->name('api-tokens.update'); Route::delete('/api-tokens/{token}', [TokenController::class, 'destroy'])->name('api-tokens.destroy');
π§ͺ Testing
Keysmith React includes tests in tests/Feature/ApiToken/
:
Run the tests with:
php artisan test
π Customizing Permissions
Modify the available API token permissions in config/keysmith.php
:
return [ 'permissions' => [ 'read', 'create', 'update', 'delete', // Add your custom permissions here ], ];
π Security
If you discover any security-related issues, please email mike.deeming@blaspsoft.com instead of using the issue tracker.
π Credits
π License
This package is licensed under MIT. See LICENSE.md for details.