keet
Version:
Minimalist view layer for the web
31 lines (25 loc) • 578 B
Markdown
id: intro
title: Introduction
sidebar_label: Introduction
## Getting Started
Keet is flexible, you can include/intergrate into your current existing project easily. To try out Keet is to include it from a CDN or npm.
Create a HTML file:-
```html
<html>
<head>
<script src="//cdn.rawgit.com/syarul/keet/master/keet-min.js"></script>
</head>
<body>
<div id="app"></div>
</body>
<script>
// your codes goes here
</script>
</html>
```
```npm install keet```
```js
import Keet, { CreateModel, html } from 'keet'
```