Download the PHP package joshcirre/duo without Composer
On this page you can find all versions of the php package joshcirre/duo. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download joshcirre/duo
More information about joshcirre/duo
Files in joshcirre/duo
Informations about the package duo
Duo (VERY MUCH A WIP)
Local-first IndexedDB syncing for Laravel and Livewire applications.
Duo enables automatic client-side caching and synchronization of your Eloquent models using IndexedDB, providing a seamless offline-first experience for your Laravel/Livewire applications. Just add a trait to your Livewire component and Duo handles the restβautomatically transforming your server-side components to work with IndexedDB.
Features
- π Zero Configuration: Add one trait and Duo automatically transforms your Livewire components to Alpine.js
- πΎ Automatic IndexedDB Caching: Transparently cache Eloquent models in the browser
- ποΈ Schema Extraction: Automatically extracts database column types, nullability, and defaults for IndexedDB
- β‘ Optimistic Updates: Instant UI updates with background server synchronization
- π Offline Support: Automatic offline detection with sync queue that resumes when back online
- π Visual Sync Status: Built-in component showing online/offline/syncing states
- π― Livewire Integration: Seamless integration with Livewire 3+ and Volt components
- π¦ Type-Safe: Full TypeScript support with auto-generated types from database schema
- π Vite Plugin: Automatic manifest generation with file watching
Local Development Setup
Want to contribute or test Duo locally? Follow these steps to set up local development with symlinked packages.
1. Clone and Install Duo
2. Symlink Composer Package
Link the Duo package to your local Laravel application:
This creates a symlink in vendor/joshcirre/duo pointing to your local Duo directory. Changes to the PHP code are immediately reflected.
3. Symlink NPM Package
Link the Vite plugin to your Laravel application:
Now your Laravel app uses the local version of the Vite plugin.
4. Watch for Changes
In the Duo package directory, run the build watcher:
This watches for TypeScript changes and rebuilds automatically. Changes are immediately available in your linked Laravel app.
5. Test Your Changes
In your Laravel app:
This runs both npm run dev and php artisan serve concurrently. Any changes you make to Duo's PHP or TypeScript code will be reflected immediately!
Alternative (manual):
6. Unlinking (When Done)
To remove the symlinks:
Development Tips
- PHP Changes: Automatically picked up via symlink
- TypeScript Changes: Require
npm run buildornpm run dev(watch mode) - View Changes: Blade components update automatically
- Config Changes: May require
php artisan optimize:clear - Manifest Changes: Run
php artisan duo:generatemanually if needed
Installation
Composer Package
NPM Package (Vite Plugin)
Note: Dexie is automatically installed as a dependency.
Publishing Assets (Optional)
Duo works out-of-the-box without publishing any files. However, you can publish various assets for customization:
What gets published:
duo-configβconfig/duo.php- Global configurationduo-viewsβresources/views/vendor/duo/components/- Blade components for customizationduo-assetsβresources/js/vendor/duo/- JavaScript source files (rarely needed)
See Publishing Components in the Configuration section for customization examples.
Quick Start
1. Add the Syncable Trait to Your Models
Add the Syncable trait to any Eloquent model you want to cache in IndexedDB:
Both $fillable and $guarded are supported:
Duo automatically extracts your model's fillable attributes and database schema (column types, nullable, defaults) to generate the IndexedDB manifestβno manual configuration needed!
User-Scoped Models:
For models that belong to users, add a user() relationship but do NOT add user_id to $fillable:
Why? Including user_id in $fillable is a security riskβusers could assign items to other users. Duo automatically detects the user() relationship and assigns the authenticated user's ID securely during sync.
2. Add @duoMeta Directive to Your Layout
CRITICAL: Add the @duoMeta directive to the <head> section of your main layout. This provides the CSRF token and enables offline page caching:
The @duoMeta directive outputs:
<meta name="csrf-token">- Required for API sync requests<meta name="duo-cache">- Tells the service worker to cache this page for offline access
3. Configure Vite
Add the Duo plugin to your vite.config.js:
That's all you need! The plugin will automatically:
- β
Generate the manifest at
resources/js/duo/manifest.json - β
Watch
app/Models/**/*.phpfor changes - β Auto-regenerate manifest when models change
- β
Inject Duo initialization code into
resources/js/app.js - β
Copy the service worker to
public/duo-sw.json build
Want to customize? All options have sensible defaults and are optional:
4. Add the WithDuo Trait to Your Livewire Components
This is where the magic happens! Add the WithDuo trait to any Livewire component and Duo will automatically transform it to use IndexedDB:
Volt Component Example:
Class-Based Component Example:
What Happens Automatically:
When you add the WithDuo trait, Duo will:
- β
Transform
wire:clickto Alpine.js@clickhandlers - β
Convert
@forelseloops to Alpinex-fortemplates - β
Transform
{{ $todo->property }}tox-textbindings - β
Convert conditional classes to
:classbindings - β
Add
x-cloakand loading state management - β Route all data operations through IndexedDB
- β Queue changes for background sync to the server
5. Add Optional Components
Sync Status Indicator:
Display a visual indicator of the sync status:
This component shows:
- π Offline: "You're offline - Changes saved locally"
- π΅ Syncing: "Syncing X changes..." (only shows after delay if sync takes longer than expected)
- π’ Synced: "All changes synced" (optional, disabled by default)
Configuration Options:
Available Props:
| Prop | Type | Default | Description |
|---|---|---|---|
position |
string | 'top-right' |
Position of the indicator: 'top-right', 'top-left', 'bottom-right', 'bottom-left' |
inline |
bool | false |
Display inline instead of fixed positioning |
show-delay |
int | 1000 |
Milliseconds to wait before showing syncing indicator (prevents flash for fast syncs) |
show-success |
bool | false |
Whether to show "All changes synced" success message |
Global Configuration:
You can set default values in your config/duo.php:
Component-level props override global config values.
Debug Panel (Local Development Only):
Add a debug panel to view IndexedDB info and manage the database during development:
This component (only visible in local environment) provides:
- π Database Info: Name, schema version, stores, and record counts
- π Refresh: Update database information on demand
- ποΈ Clear Database: Delete IndexedDB and reload (useful for testing schema upgrades)
- π Duo Toggle: Switch between Duo (local-first) and standard Livewire mode
The debug panel automatically shows the current schema version (timestamp-based) and makes it easy to test schema migrations by clearing the database.
Available Props:
| Prop | Type | Default | Description |
|---|---|---|---|
position |
string | 'bottom-right' |
Position of the panel: 'top-right', 'top-left', 'bottom-right', 'bottom-left' |
Note: Both components (sync-status and debug) can be customized by publishing the views. See Publishing Components for details.
6. Run Your Application
Development:
This runs both npm run dev and php artisan serve concurrently. The Vite plugin will automatically:
- Run
php artisan duo:generateto create the manifest - Watch for model and component changes
- Regenerate the manifest when files change
Production Build:
The production build will:
- Generate the IndexedDB manifest
- Copy the service worker to
public/duo-sw.jsautomatically - Bundle all Duo client code with your assets
Important for Offline Support:
- Visit your application while online (at least once after deploying)
- The service worker will detect pages with
@duoMetaand cache them - After the initial visit, the page will work offline
The service worker route (/duo-sw.js) is automatically registered by the Duo service providerβno additional configuration needed!
How It Works
Duo uses a sophisticated local-first architecture that transforms your Livewire components into offline-capable Alpine.js applications:
Initial Load
-
Component Transformation: When a component with the
WithDuotrait renders, Duo intercepts the HTML and transforms it:- Blade
@forelseloops β Alpinex-fortemplates wire:clickhandlers β Alpine@clickwith IndexedDB operations{{ $model->property }}β<span x-text="model.property"></span>- Conditional classes β
:classbindings - Adds loading states and
x-cloakfor smooth initialization
- Blade
- Sync Server Data: On page load, the Alpine component syncs server data to IndexedDB
- Ready State: Component shows with
duoReadyflag set to true
Data Operations
Reads:
- All data is read from IndexedDB (instant, no network delay)
- Alpine templates reactively update from the local cache
Writes:
- Changes write to IndexedDB immediately (optimistic update)
- UI updates instantly
- Operation queues for background server sync
- Sync happens automatically in the background
Offline Support
Going Offline:
- Browser's
navigator.onLineAPI detects offline state - Sync queue automatically pauses
- All operations continue to work locally
- Sync status component shows orange "Offline" badge
Coming Back Online:
- Browser detects connection restored
- Sync queue automatically resumes
- All queued operations sync to server
- Network errors don't count against retry limit
- Sync status shows progress, then green "Synced" when complete
Background Sync
- Runs on configurable interval (default: 5 seconds)
- Processes queued operations in order
- Retries failed operations (default: 3 attempts)
- Updates local cache with server responses
- Handles concurrent operations safely
Configuration
Global Configuration
Publish the configuration file:
Edit config/duo.php:
Publishing Components
If you want to customize the Duo components (sync-status, debug panel), publish the views:
This will copy the component views to resources/views/vendor/duo/components/. Published views take precedence over the package views, so you can customize:
Sync Status Component:
Debug Panel Component:
After publishing, you can modify:
- Badge colors and icons
- Positioning and layout
- Text content and messaging
- Animation and transitions
- Any inline styles
Example Customization:
Note: The components use inline styles by default, so they work out-of-the-box without requiring Tailwind or custom CSS. If you publish and customize them, you can keep the inline styles or switch to your own CSS approach.
Component-Level Configuration
You can customize Duo's behavior on a per-component basis using the type-safe DuoConfig class. This provides full IDE autocomplete and type checking!
Volt Component:
Class-Based Component:
Available Configuration Options:
All options can be set globally in config/duo.php and overridden per-component in duoConfig():
| Option | Type | Default | Global Config | Component Override | Description |
|---|---|---|---|---|---|
syncInterval |
int | 5000 | duo.sync_interval |
syncInterval |
Milliseconds between sync attempts to server. Controls how often pending changes are sent. |
timestampRefreshInterval |
int | 10000 | duo.timestamp_refresh_interval |
timestampRefreshInterval |
Milliseconds between timestamp updates. Controls how often relative times like "5 minutes ago" refresh. |
maxRetryAttempts |
int | 3 | duo.max_retry_attempts |
maxRetryAttempts |
Maximum number of retry attempts for failed sync operations before giving up. |
debug |
bool | false | duo.debug |
debug |
Enable verbose console logging. Useful for debugging transformation and sync issues. |
Configuration Priority:
Example with all options:
Benefits of Type-Safe Config:
- β IDE Autocomplete: Your IDE shows all available options as you type
- β Type Checking: PHP will catch typos and wrong types at runtime
- β Validation: Invalid values (like negative numbers) throw clear exceptions
- β Documentation: Hover over parameters in your IDE to see descriptions
- β Refactoring: Rename config options safely across your entire codebase
Why Component-Level Config?
Component-level configuration allows you to:
- π― Fine-tune performance: High-traffic pages can sync less frequently or refresh timestamps slower
- π Debug specific components: Enable debug mode only where you need it
- π± Mobile optimization: Adjust sync and refresh rates based on device capabilities
- π¨ User experience: Customize behavior for different types of content
- β‘ Critical components: Increase sync frequency for time-sensitive data
Global vs Component Config:
- Global (
config/duo.php): Sets application-wide defaults, configured via environment variables - Component (
duoConfig()): Overrides for specific components, set in code
This architecture provides flexibility while maintaining sensible defaults across your entire application.
Vite Plugin Options
The Duo Vite plugin has sensible defaults and requires no configuration. Simply add duo() to your Vite plugins.
All options are optional:
| Option | Type | Default | Description |
|---|---|---|---|
manifestPath |
string | 'resources/js/duo/manifest.json' |
Path where the manifest file is generated |
watch |
boolean | true |
Watch files for changes during development |
autoGenerate |
boolean | true |
Automatically run duo:generate on build and file changes |
patterns |
string[] | ['app/Models/**/*.php'] |
Glob patterns to watch for changes. Add Volt/Livewire paths if you want manifest regeneration on component changes |
entry |
string | 'resources/js/app.js' |
Entry file where Duo initialization code is injected |
autoInject |
boolean | true |
Automatically inject Duo initialization code into entry file |
command |
string | 'php artisan duo:generate' |
Custom artisan command to run for manifest generation |
basePath |
string | process.cwd() |
Base path for resolving file paths |
Example with custom options:
Disabling auto-injection (manual initialization):
If you want full control over Duo initialization:
Then manually initialize in your JavaScript:
Advanced Usage
Manual Database Operations
Manual Sync Operations
Listen for Sync Events
Duo dispatches a duo-synced event whenever a sync operation completes successfully. You can listen for this event to trigger custom behavior:
Livewire Components:
Alpine Components:
Vanilla JavaScript:
This is particularly useful for:
- Refreshing server-side data displays after sync
- Showing toast notifications when changes are saved
- Tracking sync analytics
- Updating UI elements that show server state
Access Sync Status in Custom Components
Clear Cache
Custom Sync Component
You can build your own sync indicator using the sync status API:
Artisan Commands
Discover Models
Lists all Eloquent models using the Syncable trait. Useful for verifying which models will be included in the manifest.
Generate Manifest
Generates the manifest.json file with IndexedDB schema from your models. The Vite plugin runs this automatically, but you can run it manually:
Note: The Vite plugin with watch: true automatically regenerates the manifest when model files change, so you rarely need to run this manually.
Troubleshooting
Component Not Transforming
If your Livewire component isn't being transformed to Alpine:
-
Check the trait is present:
-
Clear caches:
- Check Laravel logs:
"window.duo not available"
If you see this error in the console:
-
Check Duo is initialized:
- Duo initializes automatically via the Vite plugin
- Check that the Duo plugin is added to your
vite.config.js
-
Regenerate the manifest:
- Check Vite is running:
Data Not Syncing
If changes aren't syncing to the server:
- Check the browser console for sync errors
-
Check sync queue status:
- Verify routes are registered - Duo registers routes at
/duo/sync - Check network tab in DevTools for failed requests
Changes Not Persisting
If changes disappear after refresh:
- Check IndexedDB in Browser DevTools β Application β IndexedDB
- Verify the model has
Syncabletrait - Check server logs for save errors
- Clear IndexedDB and resync:
Clearing IndexedDB
Need to clear IndexedDB during development? You have several options:
Option 1: Debug Panel (Easiest)
Click "Delete Database & Reload" to clear IndexedDB and reload the page.
Option 2: Browser Console
Option 3: Browser DevTools
- Chrome/Edge: DevTools β Application β IndexedDB β Right-click database β Delete
- Firefox: DevTools β Storage β IndexedDB β Right-click database β Delete
- Safari: Web Inspector β Storage β IndexedDB β Select database β Click trash icon
When to clear IndexedDB:
- Testing schema version upgrades
- Debugging data sync issues
- After changing model fillable attributes
- When data appears corrupted
FAQ
Do I need to change my Livewire components?
No! Just add the WithDuo trait. Your existing Blade templates and Livewire methods work as-is. Duo automatically transforms them to use IndexedDB and Alpine.js.
Will this work with Volt components?
Yes! Duo works seamlessly with both class-based Livewire components and Volt single-file components.
What happens if JavaScript is disabled?
Components without the WithDuo trait will continue to work as normal server-side Livewire components. Components with the trait require JavaScript for the IndexedDB functionality.
Can I use this with existing Alpine.js code?
Yes! Duo generates Alpine.js-compatible code, so you can mix Duo-transformed components with regular Alpine components.
Does this replace Livewire?
No. Duo enhances Livewire by adding local-first capabilities. The server is still the source of truth. Duo just caches data locally and provides offline support.
Can I use Flux components?
Partially. Flux components work great for forms, buttons, and static UI elements. However, Flux components inside @forelse loops won't transform correctly since they're server-side components. Use plain HTML with Alpine bindings for loop items.
How do I handle conflicts?
Duo uses a "server wins" strategy. When sync operations complete, the server response updates the local cache. This ensures the server remains the source of truth.
Can I customize the transformation?
Currently, the transformation is automatic. Custom transformation logic is planned for a future release.
Requirements
- PHP ^8.2
- Laravel ^11.0 or ^12.0
- Livewire ^3.0
- Alpine.js 3.x (included with Livewire)
- Modern browser with IndexedDB support
Browser Support
Duo works in all modern browsers that support IndexedDB:
- Chrome/Edge 24+
- Firefox 16+
- Safari 10+
- iOS Safari 10+
License
MIT License. See LICENSE.md for details.
Credits
Created by Josh Cirre
Built with:
- Dexie.js - Minimalistic IndexedDB wrapper
- Laravel - PHP framework
- Livewire - Full-stack framework
- Alpine.js - Lightweight JavaScript framework
- Livewire Flux - UI components (optional)
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Roadmap
See ROADMAP.md for planned features including:
- Full page caching for complete offline mode
- Seamless conflict resolution with visual components
- Multiplayer mode ("Duet") with real-time sync
- Permission-based conflict resolution
- Architecture optimizations and Livewire v4 compatibility
Support
All versions of duo with dependencies
illuminate/console Version ^11.0|^12.0
illuminate/database Version ^11.0|^12.0
illuminate/support Version ^11.0|^12.0
livewire/flux Version ^1.0|^2.0
livewire/livewire Version ^3.0
stillat/blade-parser Version ^2.0