Why
- š¼ Works with tagged template literals
- š³ Component based
- š§© WebComponent ready
- šŖ Global stores
- š Global components
- š« Fast performance
- š
Scoped style
- š” Uses ES6 proxy to observe changes
- š Simple and familiar API
- š±ā No extra syntax like JSX
- š£ No confusion with props and state
- ā Extensible through: plugins, mixin, components
- š½ CSS animation support
Get started
$ npx doz-cli app my-app
$ cd my-app
$ npm start
Example
<div id="app"></div>
Component definition
ButtonCounter.js
import {Component} from 'doz'
export default class ButtonCounter extends Component {
constructor(o) {
super(o);
this.props = {
counter: 0
};
}
template(h) {
return h`
<style>
button {
font-size: 16px;
padding: 20px;
}
</style>
<button onclick="${this.increase}">
count ${this.props.counter}
</button>
`
}
increase() {
this.props.counter++;
}
};
Make an app with the component defined above
app.js
import {appCreate} from 'doz'
import ButtonCounter from './ButtonCounter'
appCreate('#app', ButtonCounter);
Doz ecosystem
- šØš»āš» doz-cli provides a boilerplate to creating app and component
- šØš¼āšØ doz-ssr server side rendering
- š¤³š¼ doz-snap transforms app to static HTML
- š©š¼āš doz-router a complete component for routing
- āš¼ doz-metatag a plugin for managing basic OG meta tag in your app (perfect with doz-ssr)
CDN unpkg
<script type="module">
import {Component} from 'https://unpkg.com/doz/dist/doz.min.js'
</script>
Changelog
You can view the changelog here
License
Doz is open-sourced software licensed under the MIT license
Author
Fabio Ricali