putyourlightson / craft-datastar-module
A real-time, template-driven hypermedia framework for Craft.
Fund package maintenance!
bencroker
Installs: 0
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:JavaScript
Type:yii-module
Requires
- php: ^8.2
- craftcms/cms: ^5.0
- starfederation/datastar-php: dev-main
Requires (Dev)
- craftcms/ecs: dev-main
- craftcms/phpstan: dev-main
- markhuot/craft-pest-core: ^2.0.4
- nystudio107/craft-autocomplete: ^1.12
This package is auto-updated.
Last update: 2024-11-22 09:58:57 UTC
README
Datastar Module for Craft CMS
This module provides the core functionality for the Datastar plugin, a real-time, template-driven hypermedia framework for Craft CMS. If you are developing a Craft plugin/module and would like to use Datastar in the control panel, you can require this package to give you its functionality, without requiring that the Datastar plugin is installed.
First require the package in your plugin/module’s composer.json
file.
{ "require": { "putyourlightson/craft-datastar-module": "^1.0.0-alpha.1" } }
Then bootstrap the module from within your plugin/module’s init
method.
use craft\base\Plugin; use putyourlightson\datastar\Datastar; class MyPlugin extends Plugin { public function init() { parent::init(); Datastar::bootstrap(); } }
Then use the Datastar function and tags as normal in your control panel templates.
<button data-on-click="{{ datastar('_datastar/search') }}">Search</button>
Datastar plugin issues should be reported to https://github.com/putyourlightson/craft-datastar/issues
The Datastar plugin changelog is at https://github.com/putyourlightson/craft-datastar/blob/develop/CHANGELOG.md
Documentation
Learn more and read the documentation at putyourlightson.com/plugins/datastar »
License
This plugin is licensed for free under the MIT License.
Requirements
This plugin requires Craft CMS 5.0.0 or later.
Installation
Install this package via composer.
composer require putyourlightson/craft-datastar-module:^1.0.0-alpha.1
Created by PutYourLightsOn.