
Almost like writing in VanillaJS. For modern browser.
Documentation | API | Demo | Browse example code
π SEE A PROJECT BUILT WITH DOZ π


Look at the code on Codepen
- πΌ 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
$ npx doz-cli app my-app
$ cd my-app
$ npm start
<div id="app"></div>
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++;
}
};
app.js
import {appCreate} from 'doz'
import ButtonCounter from './ButtonCounter'
appCreate('#app', ButtonCounter);
- π¨π»βπ» 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)
<script type="module">
import {Component} from 'https://unpkg.com/doz/dist/doz.min.js'
//...
</script>
You can view the changelog here
Doz is open-sourced software licensed under the MIT license