All Projects → Javey → Intact

Javey / Intact

An inheritable and strong logic template front-end mvvm framework.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Intact

Dot Dom
.dom is a tiny (512 byte) template engine that uses virtual DOM and some of react principles
Stars: ✭ 757 (+1510.64%)
Mutual labels:  virtual-dom
Corerender
Moved to https://github.com/alexdrone/Render
Stars: ✭ 25 (-46.81%)
Mutual labels:  virtual-dom
Wonders
🌈 Declarative JavaScript framework to build command-line applications.
Stars: ✭ 34 (-27.66%)
Mutual labels:  virtual-dom
Htm
Hyperscript Tagged Markup: JSX alternative using standard tagged templates, with compiler support.
Stars: ✭ 7,299 (+15429.79%)
Mutual labels:  virtual-dom
Puddles
Tiny vdom app framework. Pure Redux. No boilerplate.
Stars: ✭ 24 (-48.94%)
Mutual labels:  virtual-dom
Vuejs Credit Score Calculation
A vehicle credit calculation application using VueJS.👍
Stars: ✭ 12 (-74.47%)
Mutual labels:  virtual-dom
Domvm
DOM ViewModel - A thin, fast, dependency-free vdom view layer
Stars: ✭ 581 (+1136.17%)
Mutual labels:  virtual-dom
Remark Vdom
plugin to compile Markdown to Virtual DOM
Stars: ✭ 44 (-6.38%)
Mutual labels:  virtual-dom
Preact Compat
🙌 React compatibility layer for Preact.
Stars: ✭ 927 (+1872.34%)
Mutual labels:  virtual-dom
Millenniumjs
🚀 A javascript library for create Functional Stateless Components and render with Virtual DOM.
Stars: ✭ 28 (-40.43%)
Mutual labels:  virtual-dom
Dna
Progressive Web Components.
Stars: ✭ 22 (-53.19%)
Mutual labels:  virtual-dom
Dyo
Dyo is a JavaScript library for building user interfaces.
Stars: ✭ 924 (+1865.96%)
Mutual labels:  virtual-dom
Basic Virtual Dom
Very basic virtual-dom implementation.
Stars: ✭ 13 (-72.34%)
Mutual labels:  virtual-dom
Diffhtml
diffHTML is a web framework that helps you build applications and other interactive content
Stars: ✭ 788 (+1576.6%)
Mutual labels:  virtual-dom
Hyperx
🏷 - tagged template string virtual dom builder
Stars: ✭ 991 (+2008.51%)
Mutual labels:  virtual-dom
Nanomorph
🚅 - Hyper fast diffing algorithm for real DOM nodes
Stars: ✭ 621 (+1221.28%)
Mutual labels:  virtual-dom
Muve
Muve is a micro library for building interactive javascript applications.
Stars: ✭ 11 (-76.6%)
Mutual labels:  virtual-dom
Svg Radar Chart
Generate SVG radar charts.
Stars: ✭ 45 (-4.26%)
Mutual labels:  virtual-dom
Evolui
A tiny reactive user interface library, built on top of RxJs.
Stars: ✭ 43 (-8.51%)
Mutual labels:  virtual-dom
Preact
⚛️ Fast 3kB React alternative with the same modern API. Components & Virtual DOM.
Stars: ✭ 30,527 (+64851.06%)
Mutual labels:  virtual-dom

Build Status
Browser Matrix

Intact

文档 Documents

简介

Intact作为一个可继承,并且拥有强逻辑模板的前端MVVM框架,有着如下特色:

  1. 充分利用组合与继承的思想,来最高限度地复用代码
  2. 同时支持数据驱动和组件实例化调用,来最便捷地实现功能
  3. 强逻辑模板,赋予模板更多功能和职责,来完成业务逻辑和表现逻辑分离

安装

通过script标签引入

请通过npmbower或者直接到github上下载源码包。其中 dist/intact.js 为UMD方式打包的文件,直接通过script引入会暴露全局变量Intact

<script src="/path/to/intact.js"></script>

<!-- 或者通过cdn -->
<script src="//unpkg.com/intact"></script>

NPM

在大型项目中,一般都会使用webpack构建,通过npm包管理器来管理项目依赖。

npm install intact --save

使用

var App = Intact.extend({
    defaults: {
        name: 'Intact'
    },
    template: '<div>Hello {self.get("name")}!</div>'
});

通过Intact.mount方法,可以将该组件挂载到指定元素下。

window.app = Intact.mount(App, document.getElementById('app'));

许可

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].