putyourlightson/craft-datastar-module
A template-driven, reactive hypermedia framework for Craft.
Maintainers
Package info
github.com/putyourlightson/craft-datastar-module
Type:yii-module
pkg:composer/putyourlightson/craft-datastar-module
Fund package maintenance!
Requires
- php: ^8.2
- craftcms/cms: ^5.4
- starfederation/datastar-php: ^1.0.0
Requires (Dev)
- craftcms/ecs: dev-main
- craftcms/phpstan: dev-main
- markhuot/craft-pest-core: ^2.0.4
- nystudio107/craft-autocomplete: ^1.12
Suggests
None
Provides
None
Conflicts
None
Replaces
None
mit 6981ad3c8c0c09d7af34665f36e4db96ff5f2fac
This package is auto-updated.
Last update: 2026-06-14 20:22:11 UTC
README
๐ Stable Version
๐ Total Downloads
Datastar Module for Craft CMS
This module provides the core functionality for the Datastar plugin. 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"
}
}
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.get('_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 module is licensed for free under the MIT License.
Requirements
This module requires Craft CMS 5.4.0 or later.
Installation
Install this package via composer.
composer require putyourlightson/craft-datastar-module:^1.0.0
Created by PutYourLightsOn.
