@act/core

A simple reactive front-end framework

Usage no npm install needed!

<script type="module">
  import actCore from 'https://cdn.skypack.dev/@act/core';
</script>

README

Travis

Act

ACT

A simple reactive front-end framework

Hello Act

Here's Act's hello world:

main('Hello world')

And here's the classic counter example:

const view = (value) => ['button', {click: {add: count}}, value]
const model = 0
main(view, { model })

Install

Act is written in es6 and expects you to use webpack, so you can import only the files you really need. To install, just run in your project folder:

npm i @act/core -s