trinity-web
v1.1.9
Published
hola
Downloads
77
Readme
TrinityJS
React inspired minimalistic web framework
Installation
$ npm install --save trinity-web
Documentation
The early documentation is available at trinity.js.org. It will change frequently as new features are added, so keep an eye out!
Also, you can look into the tests directory for an insight into how to use it.
Getting Started
index.html
<!DOCTYPE html>
<html>
<body>
<app></app>
</body>
</html>
Setup app entry
index.js
import { Trinity } from 'trinity-web'
const app = new Trinity('app')
...