2019-05-26 09:08:12 +08:00
English | [简体中文 ](./README.CN.md )
2018-10-20 10:59:36 +08:00
2019-05-13 09:25:49 +08:00
< p align = "center" > < img src = "https://tencent.github.io/omi/assets/omi-logo2019.svg" alt = "omi" width = "100" / > < / p >
2019-07-21 14:37:20 +08:00
< p align = "center" > < img src = "https://tencent.github.io/omi/assets/omi-in-out.jpg" alt = "omi" width = "1000" / > < / p >
2019-05-10 08:15:53 +08:00
< h2 align = "center" > Omi - Front End Cross-Frameworks Framework< / h2 >
2019-08-29 09:38:19 +08:00
< p align = "center" > Merge Web Components, JSX, HTM, Virtual DOM, Functional style and Proxy into one framework with tiny size and high performance. Write components once, using in everywhere, such as Omi, React, Preact, Vue or Angular.< / p >
2018-10-20 10:59:36 +08:00
2019-08-29 09:45:52 +08:00
## Quick Preview
Pass data through the component tree without having to pass props down manually at every level by store, auto update the view on demand.
```jsx
import { define, render } from 'omi'
class Store {
data = {
count: 1
}
sub = () => {
this.data.count--
}
add = () => {
this.data.count++
}
}
define('my-counter', ['count'], _ => (
< div >
< button onClick = {_.store.sub} > -< / button >
< span > {_.store.data.count}< / span >
< button onClick = {_.store.add} > +< / button >
< / div >
2019-08-29 11:18:26 +08:00
), {
css: `span { color: red; }` ,
installed() {
console.log('installed')
}
})
2019-08-29 09:45:52 +08:00
render(< my-counter / > , 'body', new Store)
```
2019-09-01 15:52:50 +08:00
* The second and fourth parameter of `define` is optional
* `<my-counter></my-counter>` can be used in any framework or no framework, such as `document.createElement('my-counter')`
2019-08-29 10:13:31 +08:00
2019-03-29 15:01:45 +08:00
## Ecosystem of Omi
2018-11-05 14:47:11 +08:00
2019-08-12 13:01:36 +08:00
[→ Omi Developer Roadmap ](https://github.com/Tencent/omi/tree/master/assets/rm.md )
2019-04-05 15:54:12 +08:00
#### Base
2019-04-05 15:47:55 +08:00
2019-03-29 15:01:45 +08:00
| **Project** | **Description** |
2018-11-05 14:47:11 +08:00
| ------------------------------- | ----------------------------------- |
2019-07-23 15:20:13 +08:00
| [omi-docs ](https://tencent.github.io/omi/site/docs/index.html ) and [codepen ](https://codepen.io/collection/DrMYgV/ ) and [wcd demos ](https://webcomponents.dev/demos/omi )| Omi official documents |
2019-06-19 11:38:46 +08:00
| [omim![ ](https://raw.githubusercontent.com/dntzhang/cax/master/asset/hot.png )](https://github.com/Tencent/omi/tree/master/packages/omim)| Cross **frameworks** and **themes** components.([DOCS & REPL](https://tencent.github.io/omi/packages/omim/docs/build/index.html) && [JOIN US! ](https://github.com/Tencent/omi/tree/master/packages/omim#contribution ))|
2019-09-04 09:32:29 +08:00
| [omi-kbone![ ](https://raw.githubusercontent.com/dntzhang/cax/master/asset/hot.png ) ](https://github.com/Tencent/omi/tree/master/packages/omi-kbone)| 使用 omi + [kbone ](https://github.com/wechat-miniprogram/kbone ) 多端开发(小程序和Web)的贪吃蛇游戏。 |
2019-07-22 11:48:24 +08:00
| [omio ](https://github.com/Tencent/omi/tree/master/packages/omio )| Omi for old browsers with same api(IE8+)|
2019-07-20 13:18:04 +08:00
| [omi-ssr ](https://github.com/Tencent/omi/tree/master/packages/omi-ssr )| Server-side rendering(support omio only)|
2019-04-28 14:37:12 +08:00
| [omi-router ](https://github.com/Tencent/omi/tree/master/packages/omi-router ) |Omi official router in 1KB js|
2019-04-30 14:42:18 +08:00
| [omi-cli ](https://github.com/Tencent/omi/tree/master/packages/omi-cli )| Project scaffolding. [→ Base Templates ](https://github.com/Tencent/omi/tree/master/packages/omi-cli/template ) and [→ Other Templates ](https://github.com/omijs ) |
2019-04-05 15:47:55 +08:00
| [omi-devtools ](https://github.com/f/omi-devtools )| Browser DevTools extension |
2019-06-05 10:36:25 +08:00
| [omiu ](https://tencent.github.io/omi/packages/omiu/examples/build/index.html )| Simple Omi UI |
2019-07-14 09:33:20 +08:00
| [omil ](https://github.com/Wscats/omil )|Webpack loader for Omi.js components.([DOCS](https://wscats.github.io/omi-docs/public/home/))|
2019-05-31 17:54:58 +08:00
| [omi-snippets ](https://github.com/Wscats/omi-snippets ) |A beautify VSCode extension for .omi or .eno file, [Install now! ](https://marketplace.visualstudio.com/items?itemName=Wscats.omi-snippets )|
2019-08-26 12:05:44 +08:00
| [obaa ](https://github.com/Tencent/omi/tree/master/packages/obaa ) or [JSONPatcherProxy ](https://github.com/Palindrom/JSONPatcherProxy ) | Observe or Proxy any object's any change |
2019-04-05 15:47:55 +08:00
2019-08-22 10:56:19 +08:00
#### Snake MVP
2019-04-05 15:47:55 +08:00
| **Project** | **Description** |
| ------------------------------- | ----------------------------------- |
2019-08-27 11:25:17 +08:00
| [omi-snake![ ](https://raw.githubusercontent.com/dntzhang/cax/master/asset/hot.png ) ](https://github.com/Tencent/omi/tree/master/packages/omi-snake)| The Snake-Eating Game Based on MVP Architecture Written by Omi |
2019-09-04 09:33:36 +08:00
| [omi-kbone-snake![ ](https://raw.githubusercontent.com/dntzhang/cax/master/asset/hot.png ) ](https://github.com/Tencent/omi/tree/master/packages/omi-kbone)| omi-kbone 写的 MVP 架构的贪吃蛇小程序 |
2019-08-27 11:25:17 +08:00
| [react-snake![ ](https://raw.githubusercontent.com/dntzhang/cax/master/asset/hot.png ) ](https://github.com/Tencent/omi/tree/master/packages/react-snake)| The Snake-Eating Game Based on MVP Architecture Written by React |
2019-08-22 10:56:19 +08:00
#### Mini Program(小程序)
| **Project** | **Description** |
| ------------------------------- | ----------------------------------- |
2019-08-16 21:55:44 +08:00
| [react-kbone![ ](https://raw.githubusercontent.com/dntzhang/cax/master/asset/hot.png ) ](https://github.com/Tencent/omi/tree/master/packages/react-kbone)| 直接使用 React 开发小程序或 Web, 基于 [kbone ](https://github.com/wechat-miniprogram/kbone ) |
| [preact-kbone![ ](https://raw.githubusercontent.com/dntzhang/cax/master/asset/hot.png ) ](https://github.com/Tencent/omi/tree/master/packages/preact-kbone)| 直接使用 Preact 开发小程序或 Web, 基于 [kbone ](https://github.com/wechat-miniprogram/kbone ) |
2019-08-10 15:54:19 +08:00
| [omix![ ](https://raw.githubusercontent.com/dntzhang/cax/master/asset/hot.png )](https://github.com/Tencent/omi/tree/master/packages/omix)| 极小却精巧的小程序框架|
2019-07-19 15:52:51 +08:00
| [omi-cloud ](https://github.com/Tencent/omi/tree/master/packages/omi-cloud )| 小程序•云开发|
2019-08-08 12:07:01 +08:00
| [omip ](https://github.com/Tencent/omi/tree/master/packages/omip )| 直接使用 Omi 开发小程序或 H5 SPA|
2019-08-19 20:52:27 +08:00
| [mps ](https://github.com/Tencent/omi/tree/master/packages/mps )| 原生小程序增强框架(JSX + Less 输出 WXML + WXSS),也支持 QQ 轻应用 |
2019-08-08 12:07:01 +08:00
| [cax ](https://github.com/Tencent/omi/tree/master/packages/cax )| 小程序 Canvas 和 SVG 渲染引擎 |
2019-04-05 15:53:49 +08:00
| [omi-mp ](https://github.com/Tencent/omi/tree/master/packages/omi-mp )| 通过微信小程序开发和生成 Web 单页应用(H5 SPA)|
2019-07-22 12:45:57 +08:00
| [westore ](https://github.com/Tencent/westore/ )| 小程序状态管理 |
2019-04-05 15:47:55 +08:00
| [comi ](https://github.com/Tencent/omi/tree/master/packages/comi )| 小程序代码高亮和 markdown 渲染组件 |
2019-04-05 17:00:22 +08:00
| [wx-touch-event ](https://github.com/qbright/wx-touch-event )| 基于 AlloyFinger/omi-finger 改造的小程序手势解决方案 |
2019-04-05 15:47:55 +08:00
2019-04-05 15:54:12 +08:00
#### Other
2019-04-05 15:47:55 +08:00
| **Project** | **Description** |
| ------------------------------- | ----------------------------------- |
2019-08-08 21:54:56 +08:00
| [omi-piano![ ](https://raw.githubusercontent.com/dntzhang/cax/master/asset/hot.png )](https://github.com/Wscats/piano) |Build piano with Omi and Omi Snippets, [Enjoy now! ](https://wscats.github.io/piano/build/ )|
2019-03-29 15:01:45 +08:00
| [omi-chart ](https://github.com/Tencent/omi/tree/master/packages/omi-chart )| Simple HTML5 Charts using chart-x tag.|
| [md2site ](https://tencent.github.io/omi/assets/md2site/ )| Static Site Generator with markdown powered by Omio.|
| [omi-30-seconds ](https://github.com/Tencent/omi/tree/master/packages/omi-30-seconds )| Useful Omi snippets that you can understand in 30 seconds.|
| [omi-canvas ](https://github.com/Tencent/omi/tree/master/packages/omi-canvas )| Perfect fusion of web components, jsx and canvas.|
2019-02-26 20:19:16 +08:00
| [omi-swiper ](https://github.com/loo41/Omi-Swiper )| Omi + Swiper |
2019-05-01 07:08:10 +08:00
| [omi-vscode ](https://github.com/ZainChen/omi-vscode )| VSCode extension for omi, [Install now! ](https://marketplace.visualstudio.com/items?itemName=ZainChen.omi ) |
2019-03-29 15:01:45 +08:00
| [omi-ex ](https://github.com/Tencent/omi/tree/master/packages/omi-ex )| Omi.js extension(TypeScript) |
| [omi-transform ](https://github.com/Tencent/omi/tree/master/packages/omi-transform )|Omi / [css3transform ](https://tencent.github.io/omi/packages/omi-transform/css3transform/ ) integration. Made css3 transform super easy in your Omi project.|
| [omi-finger ](https://github.com/Tencent/omi/tree/master/packages/omi-finger )|Support touch and gesture events in your Omi project.|
| [omi-touch ](https://github.com/Tencent/omi/tree/master/packages/omi-touch )|Smooth scrolling, rotation, pull to refresh and any motion for the web.|
| [omi-native ](https://github.com/Tencent/omi/tree/master/packages/omi-native )|Render web components to native|
|[omi-i18n](https://github.com/i18next/omi-i18n)| Internationalization solution for omi.js using i18next ecosystem |
| [omi-page ](https://github.com/Tencent/omi/tree/master/packages/omi-page ) |Tiny client-side router by [page ](https://github.com/visionmedia/page.js )|
2019-06-26 13:25:45 +08:00
| [omie ](https://github.com/Wscats/omi-electron ) |Build cross platform desktop apps with Omi.js and Electron.js|
2019-09-09 06:56:58 +08:00
| [omi-cv ](https://github.com/Wscats/omi-electron ) |Create a front-end engineer curriculum vitae, [Get Started! ](http://wscats.github.io/CV/omi/build/index.html )|
2019-03-29 15:01:45 +08:00
## Why Omi?
2019-07-28 10:33:43 +08:00
- Tiny size and [High performance ](https://tencent.github.io/omi/packages/omi/examples/perfs/ )
2019-09-08 11:36:42 +08:00
- Cross frameworks(react, preact, vue, angular), components of omi are pure custom elements
2019-05-07 11:33:24 +08:00
- One framework. Mobile & desktop & mini program
2019-07-28 10:33:43 +08:00
- Be friendly to custom elements, you can pass `false` attributes to elements through string `'0'` or string `'flase'` , you can [pass `object` attributes to elements through `:` prefix and `Omi.$` ](https://github.com/Tencent/omi/releases/tag/v6.8.0 )
2019-08-21 11:46:58 +08:00
- [Easy two way binding by extend api ](https://codepen.io/omijs/pen/aeLYjx )
2019-03-29 15:01:45 +08:00
- Supports TypeScript
- Reactive data-binding
2019-07-15 14:46:01 +08:00
- [Native tap event support ](https://github.com/Tencent/omi/releases/tag/v4.0.24 )
2019-05-19 20:01:26 +08:00
- Having Cross-frameworks UI components - [omim ](https://tencent.github.io/omi/packages/omim/docs/build/index.html )
2019-03-29 15:01:45 +08:00
- Excellent compatibility(IE8+) with [omio ](https://github.com/Tencent/omi/tree/master/packages/omio )
- Enhanced CSS, [rpx unit support ](https://github.com/Tencent/omi/releases/tag/v4.0.26 ) base on **750** screen width
- Compliance with browser trend and API design
2019-04-30 11:33:16 +08:00
- Merge [**Web Components** ](https://developers.google.com/web/fundamentals/web-components/ ), [**JSX** ](https://reactjs.org/docs/introducing-jsx.html ) and [**HTM** ](https://github.com/developit/htm ) into one framework
2019-03-29 15:01:45 +08:00
- Web Components can also be a data-driven view, ** `UI = fn(data)` **.
- JSX is the best development experience (code intelligent completion and tip) UI Expression with least [grammatical noise ](https://github.com/facebook/jsx#why-not-template-literals ) and it's turing complete(template engine is not, es template string is but grammatical noise is too loud)
- Look at [Facebook React vs Web Components ](https://softwareengineering.stackexchange.com/questions/225400/pros-and-cons-of-facebooks-react-vs-web-components-polymer ), Omi **combines their advantages** and gives developers the **freedom to choose the way they like**
- **Shadow DOM merges with Virtual DOM**, Omi uses both virtual DOM and real Shadow DOM to make view updates more accurate and faster
- **Scoped CSS**'s best solution is [**Shadow DOM** ](https://developers.google.com/web/fundamentals/web-components/shadowdom ), the community churning out frameworks and libraries for Scoped CSS (using JS or JSON writing styles such as Radium, jsxstyle, react-style; binding to webpack using generated unique `className` `filename-classname-hash` , such as CSS Modules, Vue), are hack technologies; _and Shadow DOM Style is the perfect solution_ .
- The original **Path Updating** **store system** . Proxy-based automatic **accurate** update, **low power consumption** , high degree of freedom, excellent performance, easy integration of `requestIdleCallback` ,It will automatically update UI partially when data is changed
Compare TodoApp by Omi and React, Omi and React rendering DOM structure:
| **Omi** | **React** |
| ------------------------------- | ----------------------------------- |
2019-04-21 11:31:41 +08:00
| ![Omi ](https://tencent.github.io/omi/assets/omi-render.jpg ) | ![React ](https://tencent.github.io/omi/assets/react-render.jpg ) |
2019-02-26 15:49:06 +08:00
2019-03-29 15:01:45 +08:00
Omi uses Shadow DOM based style isolation and semantic structure.
## Useful Resources
| **Title Name** | **Other language** | **Related** |
| ----------------------------------------- | ------------------ |-----------------|
2019-08-30 16:56:27 +08:00
|[Snake-Eating Game Making with Web Components of Omi and MVP Architecture](https://github.com/Tencent/omi/blob/master/tutorial/omi-web-components-snake-game-mvp.md)|||
2019-08-14 11:10:32 +08:00
|[Constructable Stylesheets: seamless reusable styles](https://developers.google.com/web/updates/2019/02/constructable-stylesheets)|||
2019-08-14 10:54:29 +08:00
|[Web Components specifications](https://github.com/w3c/webcomponents)|||
2019-06-18 14:34:07 +08:00
|[Web Components in a Nutshell](https://levelup.gitconnected.com/web-components-in-a-nutshell-1e114aa971b9)|||
2019-06-06 12:46:26 +08:00
|[Using Web Components with React in 2019](https://www.grapecity.com/blogs/using-web-components-with-react-2019)|||
|[Using Web Components in React](https://coryrylan.com/blog/using-web-components-in-react)|||
2019-03-29 15:01:45 +08:00
|[Styling We Components Using A Shared Style Sheet](https://www.smashingmagazine.com/2016/12/styling-web-components-using-a-shared-style-sheet/)|
|[Developer Tools support for Web Components in Firefox 63](https://blog.nightly.mozilla.org/2018/09/06/developer-tools-support-for-web-components-in-firefox-63/)||
|[Develop W3C Web Components with WebAssembly](https://medium.com/coinmonks/develop-w3c-web-components-with-webassembly-d65938284255)||
| [60FPS Animation In Omi ](https://github.com/Tencent/omi/blob/master/tutorial/omi-transform.md )| [简体中文 ](https://github.com/Tencent/omi/blob/master/tutorial/omi-transform.cn.md ) [한국어 ](https://github.com/Tencent/omi/blob/master/tutorial/omi-transform.kr.md )|
| [Render Web Components To Native ](https://github.com/Tencent/omi/blob/master/tutorial/render-web-components-to-native.md )|[简体中文](https://github.com/Tencent/omi/blob/master/tutorial/render-web-components-to-native.cn.md) [한국어 ](https://github.com/Tencent/omi/blob/master/tutorial/render-web-components-to-native.kr.md )|
| [Shadow Dom In Depth ](https://github.com/praveenpuglia/shadow-dom-in-depth )| [简体中文 ](https://github.com/Tencent/omi/blob/master/tutorial/shadow-dom-in-depth.cn.md )|
| [Part Theme Explainer ](https://meowni.ca/posts/part-theme-explainer/ )|求翻译|
| [Web Components MDN ](https://developer.mozilla.org/en-US/docs/Web/Web_Components )| [简体中文 ](https://developer.mozilla.org/zh-CN/docs/Web/Web_Components )|
| [Web Components Google ](https://developers.google.com/web/fundamentals/web-components/ )|
| [Web Components Org ](https://www.webcomponents.org/introduction )|
| [Web Components: the Right Way ](https://github.com/mateusortiz/webcomponents-the-right-way )|
| [Proxy MDN ](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy )|[简体中文](https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Proxy) [한국어 ](https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Proxy )|
| [CSS Variables ](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_variables )|[简体中文](https://developer.mozilla.org/zh-CN/docs/Web/CSS/Using_CSS_variables) [한국어 ](https://developer.mozilla.org/ko-KR/docs/Web/CSS/Using_CSS_variables )|
| [CSS Shadow Parts ](https://drafts.csswg.org/css-shadow-parts-1/ )|
| [Platform HTML5 ](https://platform.html5.org/ )|
| [Using requestIdleCallback ](https://developers.google.com/web/updates/2015/08/using-requestidlecallback )|[简体中文](https://div.io/topic/1370)| [A polyfill ](https://gist.github.com/paullewis/55efe5d6f05434a96c36 )|
| [The Power Of Web Components ](https://hacks.mozilla.org/2018/11/the-power-of-web-components/ )|[简体中文](https://github.com/Tencent/omi/blob/master/tutorial/the-power-of-web-components.cn.md)|
|[ShadowRoot](https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot)|[简体中文](https://developer.mozilla.org/zh-CN/docs/Web/API/ShadowRoot)||
# Overview of the Readme
- [Ecosystem of Omi ](#ecosystem-of-omi )
- [Useful Resources ](#useful-resources )
- [Add Omi in One Minute ](#add-omi-in-one-minute )
- [Add Omi in 30 Seconds ](#add-omi-in-30-seconds )
- [Getting Started ](#getting-started )
- [Install ](#install )
- [Project Template ](#project-template )
2018-10-25 21:30:18 +08:00
- [Hello Element ](#hello-element )
- [TodoApp ](#todoapp )
2019-05-07 13:13:37 +08:00
- [TypeScript Auto Complete ](#typescript-auto-complete )
2019-03-29 15:01:45 +08:00
- [Lifecycle ](#lifecycle )
- [Debugging ](#debugging )
- [Browsers Support ](#browsers-support )
- [Contributors ](#contributors )
- [Maintainers ](#maintainers )
- [Thanks ](#thanks )
2018-10-20 11:14:19 +08:00
- [License ](#license )
2018-10-20 10:59:36 +08:00
2019-03-29 15:01:45 +08:00
## Add Omi in One Minute
2018-10-20 10:59:36 +08:00
2019-04-21 11:47:54 +08:00
This page demonstrates using Omi **with no build tooling** , directly run in the browser.
2018-10-20 10:59:36 +08:00
2019-07-12 16:18:18 +08:00
- [→ Online Demo! ](https://codepen.io/dntzhang/pen/qzwbVj )
2018-10-20 10:59:36 +08:00
```html
<!DOCTYPE html>
< html >
< head >
2019-04-21 11:50:04 +08:00
< title > Omi demo without transpiler< / title >
2018-10-20 10:59:36 +08:00
< / head >
< body >
2019-04-21 11:50:04 +08:00
< script src = "https://tencent.github.io/omi/packages/omi/dist/omi.js" > < / script >
< script >
const { define, WeElement, html, render } = Omi
define('my-counter', class extends WeElement {
install() {
2019-07-12 16:18:18 +08:00
this.count = 1
2019-04-21 11:50:04 +08:00
this.sub = this.sub.bind(this)
this.add = this.add.bind(this)
}
sub() {
2019-07-12 16:18:18 +08:00
this.count--
2019-04-21 11:50:04 +08:00
this.update()
}
add() {
2019-07-12 16:18:18 +08:00
this.count++
2019-04-21 11:50:04 +08:00
this.update()
}
render() {
return html`
2019-07-12 16:18:18 +08:00
< div >
< button onClick = ${this.sub} > -< / button >
< span > ${this.count}< / span >
< button onClick = ${this.add} > +< / button >
< / div >
`}
2019-04-21 11:50:04 +08:00
})
render(html`< my-counter / > `, 'body')
< / script >
2018-10-20 10:59:36 +08:00
< / body >
< / html >
```
2019-04-21 11:52:30 +08:00
### Using store system
2019-05-07 13:13:37 +08:00
Omi Store provides a way to pass data through the component tree without having to pass props down manually at every level, injected from the root component and shared across all subcomponents. It's very simple to use:
2019-04-21 11:52:30 +08:00
```html
<!DOCTYPE html>
< html >
< head >
< meta charset = "UTF-8" / >
< title > Omi demo without transpiler< / title >
< / head >
< body >
< script src = "https://tencent.github.io/omi/packages/omi/dist/omi.js" > < / script >
< script >
const { define, WeElement, html, render } = Omi
define('my-counter', class extends WeElement {
2019-07-25 10:46:31 +08:00
use() {
2019-04-21 11:52:30 +08:00
return ['count']
}
2019-07-12 16:50:45 +08:00
//or
//static use = ['count']
2019-04-21 11:52:30 +08:00
install() {
this.sub = this.sub.bind(this)
this.add = this.add.bind(this)
}
sub() {
2019-05-07 13:13:37 +08:00
////use this.store in any method of any children components
2019-04-21 11:52:30 +08:00
this.store.data.count--
}
add() {
this.store.data.count++
}
render() {
return html`
< div >
< button onClick = ${this.sub} > -< / button >
< span > ${this.store.data.count}< / span >
< button onClick = ${this.add} > +< / button >
< / div >
`}
})
2019-05-07 13:13:37 +08:00
//Injection through a third parameter
2019-04-21 11:52:30 +08:00
render(html`< my-counter / > `, 'body', {
data: {
count: 1
}
})
< / script >
< / body >
< / html >
```
2019-05-14 06:31:07 +08:00
You can also use `my-counter` tag directly in HTML:
2018-10-20 10:59:36 +08:00
```jsx
< body >
2019-05-14 06:31:07 +08:00
< my-counter / >
2018-10-20 10:59:36 +08:00
< / body >
```
2019-07-17 16:46:22 +08:00
[→ store demo ](https://codepen.io/dntzhang/pen/EBJyaG )
2019-07-12 16:50:45 +08:00
2019-03-29 15:01:45 +08:00
### Add Omi in 30 Seconds
2019-03-25 18:21:31 +08:00
2019-03-29 15:01:45 +08:00
You can also quickly build omi projects using modern JS code:
2018-10-30 06:13:12 +08:00
```js
2019-06-11 10:09:48 +08:00
import { tag, WeElement, render } from 'omi'
2018-10-30 06:13:12 +08:00
2019-06-11 10:09:48 +08:00
@tag ('my-counter')
class MyCounter extends WeElement {
2019-07-12 16:33:08 +08:00
count = 1
2019-01-09 15:55:09 +08:00
2019-03-04 10:21:59 +08:00
static css = `
span{
2019-01-15 11:41:00 +08:00
color: red;
2019-03-04 10:21:59 +08:00
}`
2019-01-15 11:41:00 +08:00
2019-01-09 15:55:09 +08:00
sub = () => {
2019-07-12 16:33:08 +08:00
this.count--
2019-01-09 15:55:09 +08:00
this.update()
}
add = () => {
2019-07-12 16:33:08 +08:00
this.count++
2019-01-09 15:55:09 +08:00
this.update()
}
render() {
return (
< div >
< button onClick = {this.sub} > -< / button >
2019-07-12 16:33:08 +08:00
< span > {this.count}< / span >
2019-01-09 15:55:09 +08:00
< button onClick = {this.add} > +< / button >
< / div >
)
}
2019-06-11 10:09:48 +08:00
}
2019-01-09 15:55:09 +08:00
render(< my-counter / > , 'body')
```
2019-07-12 16:33:08 +08:00
[→ counter demo ](https://codepen.io/dntzhang/pen/wLZGPK )
2019-01-09 15:55:09 +08:00
2018-10-31 19:44:01 +08:00
2019-03-29 15:01:45 +08:00
## Getting Started
2018-10-20 10:59:36 +08:00
2019-03-29 15:01:45 +08:00
### Install
2018-10-20 10:59:36 +08:00
```bash
2019-04-22 10:12:50 +08:00
$ npm i omi-cli -g # install cli
$ omi init my-app # init project
$ cd my-app
$ npm start # develop
$ npm run build # release
2018-10-20 10:59:36 +08:00
```
2019-03-29 15:01:45 +08:00
> `npx omi-cli init my-app` is also supported(npm v5.2.0+).
2018-11-21 22:43:27 +08:00
2019-03-29 15:01:45 +08:00
Directory description:
2018-10-20 10:59:36 +08:00
```
├─ config
├─ public
├─ scripts
├─ src
│ ├─ assets
2019-03-29 15:01:45 +08:00
│ ├─ elements //Store all custom elements
│ ├─ store //Store all this store of pages
│ ├─ admin.js //Entry js of compiler, will build to admin.html
│ └─ index.js //Entry js of compiler, will build to index.html
2018-10-20 10:59:36 +08:00
```
2019-01-08 11:57:08 +08:00
#### Scripts
2019-01-08 11:54:56 +08:00
```json
"scripts": {
"start": "node scripts/start.js",
"build": "PUBLIC_URL=. node scripts/build.js",
"build-windows": "set PUBLIC_URL=.& & node scripts/build.js",
"fix": "eslint src --fix"
}
```
2019-03-29 15:01:45 +08:00
You can set up the PUBLIC_URL, such as:
2019-01-08 11:54:56 +08:00
```json
...
"build": "PUBLIC_URL=https://fe.wxpay.oa.com/dv node scripts/build.js",
"build-windows": "set PUBLIC_URL=https://fe.wxpay.oa.com/dv& & node scripts/build.js",
...
```
2019-01-15 14:36:37 +08:00
2019-04-26 09:35:45 +08:00
#### Switch omi, omio and reomi
2019-01-15 14:36:37 +08:00
2019-03-29 15:01:45 +08:00
Add or remove the alias config in package.json to switch omi and omio:
2019-01-15 14:36:37 +08:00
```js
2019-04-25 11:33:05 +08:00
"alias": {
"omi": "omio"
}
```
2019-01-08 11:54:56 +08:00
2019-03-29 15:01:45 +08:00
### Project Template
2018-10-24 02:04:13 +08:00
2018-11-25 21:33:52 +08:00
| **Template Type** | **Command** | **Describe** |
2018-11-25 21:22:54 +08:00
| ------------ | -----------| ----------------- |
2019-03-29 15:01:45 +08:00
|Base Template(v3.3.0+)|`omi init my-app`| Basic omi or omio(IE8+) project template.|
|Base Template with snapshoot|`omi init-snap my-app`| Basic omi or omio(IE8+) project template with snapshoot prerendering.|
|TypeScript Template(omi-cli v3.3.0+)|`omi init-ts my-app`|Basic template with typescript.|
|Mobile Template|`omi init-weui my-app`| Mobile web app template with weui and omi-router.|
|omi-mp Template(omi-cli v3.0.13+)|`omi init-mp my-app` |Developing web with mini program template.|
<!-- |[SPA Template](https://tencent.github.io/omi/packages/omi - router/examples/spa/build/)(omi - cli v3.0.10+)|`omi init - spa my - app`|Single page application template with omi - router.| -->
2019-04-02 17:11:04 +08:00
The base Template(`omi init my-app`) is based on a single-page create-react-app to be converted into a multi-page one, with configuration issues to see [create-react-app user guide ](https://facebook.github.io/create-react-app/docs/getting-started )
2018-10-20 10:59:36 +08:00
### Hello Element
2019-03-29 15:01:45 +08:00
Define a custom element by extending ** `WeElement` ** base class:
2018-10-20 10:59:36 +08:00
```js
2018-10-30 09:08:59 +08:00
import { define, WeElement } from 'omi'
2018-10-20 10:59:36 +08:00
2018-10-30 09:08:59 +08:00
define('hello-element', class extends WeElement {
2018-10-25 21:30:18 +08:00
onClick = evt => {
// trigger CustomEvent
2018-10-30 09:08:59 +08:00
this.fire('abc', { name: 'dntzhang', age: 12 })
evt.stopPropagation()
}
2018-10-25 21:30:18 +08:00
2019-06-01 08:57:23 +08:00
//If you need to use < hello-element > < / hello-element > directly in html, you must declare propTypes
static propTypes = {
msg: String
}
static css = `
2019-01-15 11:41:00 +08:00
div {
color: red;
cursor: pointer;
}`
2018-10-25 21:30:18 +08:00
render(props) {
return (
< div onClick = {this.onClick} >
2019-06-01 08:57:23 +08:00
Hello {props.msg}
2018-10-25 21:30:18 +08:00
< div > Click Me!< / div >
< / div >
2018-10-30 09:08:59 +08:00
)
2018-10-25 21:30:18 +08:00
}
2018-10-30 09:08:59 +08:00
})
2018-10-20 10:59:36 +08:00
```
2019-03-29 15:01:45 +08:00
Using `hello-element` :
2018-10-20 10:59:36 +08:00
2018-10-22 03:50:09 +08:00
```js
2018-10-30 09:08:59 +08:00
import { define, render, WeElement } from 'omi'
import './hello-element'
2018-10-20 10:59:36 +08:00
2018-10-30 09:08:59 +08:00
define('my-app', class extends WeElement {
2019-06-01 08:57:23 +08:00
data = { abc: 'abc' }
2018-10-25 21:30:18 +08:00
2018-10-30 09:08:59 +08:00
// define CustomEvent Handler
2018-10-25 21:30:18 +08:00
onAbc = evt => {
// get evt data by evt.detail
2018-10-30 09:08:59 +08:00
this.data.abc = ' by ' + evt.detail.name
this.update()
}
2018-10-25 21:30:18 +08:00
2019-06-01 08:57:23 +08:00
static css = `
2019-01-15 11:41:00 +08:00
div{
color: green;
}`
2018-10-25 21:30:18 +08:00
}
render(props, data) {
return (
< div >
2019-06-01 08:57:23 +08:00
Hello {data.abc}
2018-10-25 21:30:18 +08:00
< hello-element
onAbc={this.onAbc}
msg="WeElement"
/>
< / div >
2018-10-30 09:08:59 +08:00
)
2018-10-25 21:30:18 +08:00
}
2018-10-30 09:08:59 +08:00
})
2018-10-20 10:59:36 +08:00
2018-10-30 09:08:59 +08:00
render(< my-app name = "Omi v4.0" / > , 'body')
2018-10-20 10:59:36 +08:00
```
2019-03-29 15:01:45 +08:00
Tell Babel to transform JSX into `Omi.h()` call:
2018-10-20 10:59:36 +08:00
2019-03-29 15:01:45 +08:00
```json
2018-10-20 10:59:36 +08:00
{
2019-03-29 15:01:45 +08:00
"presets": ["env", "omi"]
2018-10-20 10:59:36 +08:00
}
```
2019-03-29 15:01:45 +08:00
The following two NPM packages need to be installed to support the above configuration:
2018-10-20 10:59:36 +08:00
2019-03-29 15:01:45 +08:00
```bash
2018-10-20 10:59:36 +08:00
"babel-preset-env": "^1.6.0",
"babel-preset-omi": "^0.1.1",
```
2019-03-29 15:01:45 +08:00
If you use babel7, you can also use the following packages and configuration:
2018-10-27 16:08:24 +08:00
```bash
npm install --save-dev @babel/preset -env
npm install --save-dev @babel/preset -react
```
```js
{
"presets": [
"@babel/preset-env",
[
"@babel/preset-react",
{
2019-01-07 10:08:11 +08:00
"pragma": "Omi.h"
2018-10-27 16:08:24 +08:00
}
]
]
}
```
2019-03-29 15:01:45 +08:00
If you don't want to write CSS in JS, you can use [to-string-loader ](https://www.npmjs.com/package/to-string-loader ) of webpack,
For example, the following configuration:
2018-10-20 10:59:36 +08:00
2019-03-29 15:01:45 +08:00
```js
2018-10-20 10:59:36 +08:00
{
2019-03-29 15:01:45 +08:00
test: /[\\|\/]_[\S]*\.css$/,
use: [
'to-string-loader',
'css-loader'
]
2018-10-20 10:59:36 +08:00
}
```
2019-03-29 15:01:45 +08:00
If your CSS file starts with "`_`", CSS will use `to-string-loader` ., such as:
2018-10-20 10:59:36 +08:00
2019-01-15 11:41:00 +08:00
``` js
2018-10-20 10:59:36 +08:00
import { tag, WeElement render } from 'omi'
2019-01-15 11:41:00 +08:00
define('my-app', class extends WeElement {
2018-10-20 10:59:36 +08:00
2019-01-15 11:41:00 +08:00
css = require('./_index.css')
2018-10-20 10:59:36 +08:00
...
...
...
```
2019-03-29 15:01:45 +08:00
You can also forget the tedious configuration and use omi-cli directly, no need to configure anything.
2018-10-27 16:12:05 +08:00
2018-10-20 10:59:36 +08:00
### TodoApp
2019-03-29 15:01:45 +08:00
Here is a relatively complete example of TodoApp:
2018-10-20 10:59:36 +08:00
```js
2018-11-03 06:49:36 +08:00
import { define, render, WeElement } from 'omi'
2018-10-20 10:59:36 +08:00
2019-06-01 09:01:35 +08:00
define('todo-list', class extends WeElement {
static propTypes = {
items: Array
}
render(props) {
return (
< ul >
{props.items.map(item => (
< li key = {item.id} > {item.text}< / li >
))}
< / ul >
)
}
2018-10-30 06:42:07 +08:00
})
define('todo-app', class extends WeElement {
2019-08-06 12:30:44 +08:00
items = []
text = ''
2018-10-30 07:01:01 +08:00
render() {
return (
< div >
< h3 > TODO< / h3 >
2019-08-06 12:30:44 +08:00
< todo-list items = {this.items} / >
2018-10-30 07:01:01 +08:00
< form onSubmit = {this.handleSubmit} >
< input
id="new-todo"
onChange={this.handleChange}
2019-08-06 12:30:44 +08:00
value={this.text}
2018-10-30 07:01:01 +08:00
/>
2019-08-06 12:30:44 +08:00
< button > Add #{this.items.length + 1}< / button >
2018-10-30 07:01:01 +08:00
< / form >
< / div >
)
}
handleChange = e => {
2019-08-06 12:30:44 +08:00
this.text = e.target.value
2018-10-30 07:01:01 +08:00
}
handleSubmit = e => {
e.preventDefault()
2019-08-06 12:30:44 +08:00
if (!this.text.trim().length) {
2018-10-30 07:01:01 +08:00
return
}
2019-08-06 12:30:44 +08:00
this.items.push({
text: this.text,
2018-10-30 07:01:01 +08:00
id: Date.now()
})
2019-08-06 12:30:44 +08:00
this.text = ''
this.update()
2018-10-30 07:01:01 +08:00
}
2018-10-30 06:42:07 +08:00
})
render(< todo-app / > , 'body')
2018-10-20 10:59:36 +08:00
```
2019-05-07 13:13:37 +08:00
### TypeScript Auto Complete
2019-01-11 09:02:26 +08:00
2019-05-07 13:13:37 +08:00
```jsx
import { h, WeElement, tag, classNames } from 'omi';
import * as styles from './_index.less';
2019-01-11 09:02:26 +08:00
2019-05-07 13:13:37 +08:00
interface ButtonProps {
href?: string,
disabled?: boolean,
type?: 'default' | 'primary' | 'danger',
htmltype?: 'submit' | 'button' | 'reset',
onClick?: (e: any) => void
2019-01-11 09:02:26 +08:00
}
2019-05-07 13:13:37 +08:00
const TAG = 'o-button'
2018-10-20 10:59:36 +08:00
2019-05-07 13:13:37 +08:00
declare global {
namespace JSX {
interface IntrinsicElements {
[TAG]: Omi.Props & ButtonProps
2018-10-25 21:30:18 +08:00
}
}
2019-05-07 13:13:37 +08:00
}
2018-10-20 10:59:36 +08:00
2019-05-07 13:13:37 +08:00
@tag (TAG)
export default class oButton extends WeElement< ButtonProps , { } > {
...
...
...
2018-10-20 10:59:36 +08:00
```
2019-05-07 13:13:37 +08:00
< img src = "./assets/ts.png" alt = "omi" width = "427" / >
2018-10-21 17:19:49 +08:00
2019-03-29 15:01:45 +08:00
### Lifecycle
2018-10-28 08:19:56 +08:00
| Lifecycle method | When it gets called |
| ---------------- | -------------------------------------------- |
| `install` | before the component gets mounted to the DOM |
| `installed` | after the component gets mounted to the DOM |
| `uninstall` | prior to removal from the DOM |
| `beforeUpdate` | before update |
2018-11-25 21:13:16 +08:00
| `updated` | after update |
2018-10-28 08:19:56 +08:00
| `beforeRender` | before `render()` |
2019-06-07 15:30:24 +08:00
| `receiveProps` | parent element re-render will trigger it, `return false` will prevent update action|
2018-10-28 08:19:56 +08:00
2019-03-29 15:01:45 +08:00
## Debugging
2018-10-28 08:19:56 +08:00
2019-03-29 15:01:45 +08:00
Easy to debug via [Omi DevTools Extension ](https://github.com/f/omi-devtools ) [[Install from Chrome WebStore ](https://chrome.google.com/webstore/detail/omijs-devtools/pjgglfliglbhpcpalbpeloghnbceocmd )], using Omi DevTools you can simply debug and manage your UI **without any configuration** . Just install and debug.
2018-10-28 08:19:56 +08:00
2019-03-29 15:01:45 +08:00
Since Omi uses Web Components and Shadow-DOM, it doesn't need to have another elements panel such as React has. It just adds a panel to the **Elements' sidebar** and it's powerful as much as React DevTools.
2018-10-28 08:19:56 +08:00
![Omi DevTools ](https://github.com/f/omi-devtools/raw/master/omi-devtools.gif )
2019-05-26 09:08:12 +08:00
### View registered elements
```js
console.log(Omi.elements)
```
2019-03-25 16:58:16 +08:00
<!--
2019-03-29 15:01:45 +08:00
## React to Omi
2018-11-05 13:14:43 +08:00
2019-03-29 15:01:45 +08:00
For example, the below is about migration React button as weui Omi button:
2018-11-05 13:14:43 +08:00
![react to omi ](./assets/react-to-omi.png )
* [Diff Split ](https://github.com/Tencent/omi/commit/9790fadaaf20cfede80bcf9213756a83fc8c3949?diff=split )
* [Diff Unified ](https://github.com/Tencent/omi/commit/9790fadaaf20cfede80bcf9213756a83fc8c3949?diff=unified )
* [Before ](https://github.com/Tencent/omi/blob/c8af654f1d5865dc557c0b4b8ad524f702a69be5/packages/omi-weui/src/omi-weui/elements/button/button.js )
2019-03-25 16:58:16 +08:00
* [After ](https://github.com/Tencent/omi/blob/9790fadaaf20cfede80bcf9213756a83fc8c3949/packages/omi-weui/src/omi-weui/elements/button/button.js ) -->
2018-11-05 13:14:43 +08:00
2019-03-29 15:01:45 +08:00
## Browsers Support
2018-10-20 10:59:36 +08:00
2019-05-05 14:37:19 +08:00
> [Omio](https://github.com/Tencent/omi/tree/master/packages/omio) - Omi for old browsers(IE8+)
2018-12-13 16:15:47 +08:00
2019-07-26 10:38:01 +08:00
> [Omis](https://github.com/Tencent/omi/tree/master/packages/omis) - Functional Component + Store + Scoped Style(IE9+)
2018-10-20 10:59:36 +08:00
Omi 4.0+ works in the latest two versions of all major browsers: Safari 10+, IE 11+, and the evergreen Chrome, Firefox, and Edge.
2018-10-23 06:47:28 +08:00
![→ Browsers Support ](./assets/browsers-support.png )
2018-10-20 10:59:36 +08:00
2019-03-29 15:01:45 +08:00
[→ Polyfills ](https://github.com/webcomponents/webcomponentsjs )
2018-10-20 10:59:36 +08:00
2018-12-11 14:56:28 +08:00
```html
< script src = "https://unpkg.com/@webcomponents/webcomponentsjs@2.0.0/webcomponents-bundle.js" > < / script >
```
2019-07-27 16:04:16 +08:00
## Contribution
Build a example:
```bash
npm start example_name
```
Build omi:
```bash
npm run build
```
Unit testing
```
npm run test
```
2019-03-29 15:01:45 +08:00
## Contributors
2018-11-26 17:42:55 +08:00
< table > < tbody >
2019-08-16 15:33:07 +08:00
< tr > < td > < a target = "_blank" href = "https://github.com/dntzhang" > < img width = "60px" src = "https://avatars2.githubusercontent.com/u/7917954?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/LeeHyungGeun" > < img width = "60px" src = "https://avatars2.githubusercontent.com/u/2471651?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/xcatliu" > < img width = "60px" src = "https://avatars1.githubusercontent.com/u/5453359?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/1921622004" > < img width = "60px" src = "https://avatars1.githubusercontent.com/u/19359217?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/yanceyou" > < img width = "60px" src = "https://avatars2.githubusercontent.com/u/16320418?s=60&v=4" > < / a > < / td > < / tr > < tr > < td > < a target = "_blank" href = "https://github.com/f" > < img width = "60px" src = "https://avatars0.githubusercontent.com/u/196477?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/pasturn" > < img width = "60px" src = "https://avatars0.githubusercontent.com/u/6126885?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/Wscats" > < img width = "60px" src = "https://avatars3.githubusercontent.com/u/17243165?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/akira-cn" > < img width = "60px" src = "https://avatars0.githubusercontent.com/u/316498?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/ZainChen" > < img width = "60px" src = "https://avatars3.githubusercontent.com/u/15615524?s=60&v=4" > < / a > < / td > < / tr > < tr > < td > < a target = "_blank" href = "https://github.com/dangxuandev" > < img width = "60px" src = "https://avatars1.githubusercontent.com/u/5436704?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/daizhan" > < img width = "60px" src = "https://avatars0.githubusercontent.com/u/5318547?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/132yse" > < img width = "60px" src = "https://avatars1.githubusercontent.com/u/12951461?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/elfman" > < img width = "60px" src = "https://avatars3.githubusercontent.com/u/948001?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/NoBey" > < img width = "60px" src = "https://avatars3.githubusercontent.com/u/10740524?s=60&v=4" > < / a > < / td > < / tr > < tr > < td > < a target = "_blank" href = "https://github.com/hilkbahar" > < img width = "60px" src = "https://avatars2.githubusercontent.com/u/12161006?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/eyea" > < img width = "60px" src = "https://avatars0.githubusercontent.com/u/17020223?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/guisturdy" > < img width = "60px" src = "https://avatars1.githubusercontent.com/u/7098619?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/KidneyFlower" > < img width = "60px" src = "https://avatars1.githubusercontent.com/u/16027183?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/zhangsanshi" > < img width = "60px" src = "https://avatars1.githubusercontent.com/u/3771933?s=60&v=4" > < / a > < / td > < / tr > < tr > < td > < a target = "_blank" href = "https://github.com/xland" > < img width = "60px" src = "https://avatars0.githubusercontent.com/u/2980915?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/winstonxie" > < img width = "60px" src = "https://avatars3.githubusercontent.com/u/16422642?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/ghostzhang" > < img width = "60px" src = "https://avatars3.githubusercontent.com/u/194242?s=60&v=4" > < / a > < / td >
2019-04-29 10:26:21 +08:00
< td > < a target = "_blank" href = "https://github.com/jayZOU" > < img width = "60px" src = "https://avatars3.githubusercontent.com/u/8576977?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/zhengbao" > < img width = "60px" src = "https://avatars3.githubusercontent.com/u/1736166?s=60&v=4" > < / a > < / td > < / tr > < tr > < td > < a target = "_blank" href = "https://github.com/vorshen" > < img width = "60px" src = "https://avatars3.githubusercontent.com/u/10334783?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/akira-cn" > < img width = "60px" src = "https://avatars3.githubusercontent.com/u/316498?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/loo41" > < img width = "60px" src = "https://avatars3.githubusercontent.com/u/28095677?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/rainmanhhh" > < img width = "60px" src = "https://avatars3.githubusercontent.com/u/13862623?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/nbompetsis" > < img width = "60px" src = "https://avatars3.githubusercontent.com/u/11991105?s=60&v=4" > < / a > < / td > < / tr > < tr > < td > < a target = "_blank" href = "https://github.com/CodeFalling" > < img width = "60px" src = "https://avatars1.githubusercontent.com/u/5436704?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/daizhan" > < img width = "60px" src = "https://avatars0.githubusercontent.com/u/5318547?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/ritschwumm" > < img width = "60px" src = "https://avatars2.githubusercontent.com/u/547138?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/kahwee" > < img width = "60px" src = "https://avatars3.githubusercontent.com/u/262105?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/alanyinjs" > < img width = "60px" src = "https://avatars3.githubusercontent.com/u/25688258?s=60&v=4" > < / a > < / td > < / tr > < tr > < td > < a target = "_blank" href = "https://github.com/electerious" > < img width = "60px" src = "https://avatars2.githubusercontent.com/u/499088?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/nanhupatar" > < img width = "60px" src = "https://avatars1.githubusercontent.com/u/27266016?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/ilker0" > < img width = "60px" src = "https://avatars1.githubusercontent.com/u/23511412?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/MrGrabazu" > < img width = "60px" src = "https://avatars2.githubusercontent.com/u/6928672?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/Tagir-A" > < img width = "60px" src = "https://avatars2.githubusercontent.com/u/23556586?s=60&v=4" > < / a > < / td > < / tr > < tr > < td > < a target = "_blank" href = "https://github.com/mahmut-gundogdu" > < img width = "60px" src = "https://avatars2.githubusercontent.com/u/2217899?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/howel52" > < img width = "60px" src = "https://avatars3.githubusercontent.com/u/9854818?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/yolio2003" > < img width = "60px" src = "https://avatars1.githubusercontent.com/u/352931?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/loo41" > < img width = "60px" src = "https://avatars3.githubusercontent.com/u/28095677?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/nbompetsis" > < img width = "60px" src = "https://avatars1.githubusercontent.com/u/11991105?s=60&v=4" > < / a > < / td > < / tr > < tr > < td > < a target = "_blank" href = "https://github.com/WozHuang" > < img width = "60px" src = "https://avatars2.githubusercontent.com/u/22727100?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/web-padawan" > < img width = "60px" src = "https://avatars2.githubusercontent.com/u/10589913?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/SuperHuangXu" > < img width = "60px" src = "https://avatars1.githubusercontent.com/u/14816052?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/LastHeaven" > < img width = "60px" src = "https://avatars1.githubusercontent.com/u/10590077?s=60&v=4" > < / a > < / td >
2019-08-16 15:28:15 +08:00
< td > < a target = "_blank" href = "https://github.com/validalias" > < img width = "60px" src = "https://avatars3.githubusercontent.com/u/44221844?s=60&v=4" > < / a > < / td > < / tr > < tr >
2019-05-12 18:37:14 +08:00
< td > < a target = "_blank" href = "https://github.com/FAKER-A" > < img width = "60px" src = "https://avatars2.githubusercontent.com/u/25676164?s=60&v=4" > < / a > < / td >
< td > < a target = "_blank" href = "https://github.com/liulinboyi" > < img width = "60px" src = "https://avatars2.githubusercontent.com/u/41336612?s=60&v=4" > < / a > < / td >
2019-05-14 16:35:25 +08:00
< td > < a target = "_blank" href = "https://github.com/hulei" > < img width = "60px" src = "https://avatars2.githubusercontent.com/u/6905072?s=60&v=4" > < / a > < / td > < td > < a target = "_blank" href = "https://github.com/mtonhuang" > < img width = "60px" src = "https://avatars2.githubusercontent.com/u/30364922?s=60&v=4" > < / a > < / td > < / tr > < / tbody > < / table >
2018-11-26 17:42:55 +08:00
2019-07-25 20:16:12 +08:00
## Core Maintainers
2018-10-20 10:59:36 +08:00
2019-07-25 20:16:12 +08:00
- [@Wscats ](https://github.com/Wscats )
2018-10-22 03:50:09 +08:00
- [@f ](https://github.com/f )
2018-11-01 10:43:37 +08:00
- [@LeeHyungGeun ](https://github.com/LeeHyungGeun )
2018-10-22 03:50:09 +08:00
- [@dntzhang ](https://github.com/dntzhang )
2018-10-25 11:38:56 +08:00
- [@xcatliu ](https://github.com/xcatliu )
2018-10-20 10:59:36 +08:00
2019-03-29 15:01:45 +08:00
Please contact us for any questions. Also, Add [Omi QQ Group ](https://github.com/Tencent/omi/issues/169 ).
2018-11-10 14:44:23 +08:00
2019-03-29 15:01:45 +08:00
## Thanks
2018-10-29 14:58:04 +08:00
2019-09-05 08:27:43 +08:00
* [preact ](https://github.com/developit/preact )
2019-04-28 14:35:22 +08:00
* [htm ](https://github.com/developit/htm )
2018-11-12 15:53:48 +08:00
* [create-react-app ](https://github.com/facebook/create-react-app )
* [JSX ](https://github.com/facebook/jsx )
2019-04-25 11:13:29 +08:00
* [JSONPatcherProxy ](https://github.com/Palindrom/JSONPatcherProxy )
2018-10-29 14:58:04 +08:00
2018-10-20 10:59:36 +08:00
## License
MIT © Tencent