0.0.0-alpha • Published 8 years ago

evangelion v0.0.0-alpha

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

evangelion

View layer done right, using ES6 template string.

Quick Glance

import eva, {html} from 'evangelion'

const app = eva({
	data() {
		return {count: 0}
	},
	methods: {
		increment() {
			this.count++
		}
	},
	render() {
		return html`
			<div onclick=${this.increment}>${this.count}</div>
		`
	}
})

app.$mount(document.body)

Roadmap

  • Rerender view after update state
  • Component system

Development

  • npm run build - build cjs/umd/umd:minify

Check out package.json for more.

License

MIT © EGOIST

0.0.0-alpha

8 years ago

0.0.0

8 years ago