├── .gitignore ├── .npmrc ├── .travis.yml ├── examples ├── choo-example │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── store.js │ ├── test.js │ └── view.js ├── with-inferno │ ├── .npmrc │ ├── index.html │ ├── index.js │ └── package.json ├── with-lit-html │ ├── .npmrc │ ├── index.html │ ├── index.js │ └── package.json ├── with-nanomorph │ ├── .npmrc │ ├── index.js │ └── package.json ├── with-preact │ ├── .npmrc │ ├── index.html │ ├── index.js │ └── package.json ├── with-react-jsx │ ├── .npmrc │ ├── index.html │ ├── index.js │ └── package.json ├── with-react │ ├── .npmrc │ ├── index.html │ ├── index.js │ └── package.json └── with-vue-jsx │ ├── .npmrc │ ├── index.html │ ├── index.js │ └── package.json ├── index.js ├── package.json └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | generate -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/.travis.yml -------------------------------------------------------------------------------- /examples/choo-example/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /examples/choo-example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/choo-example/index.js -------------------------------------------------------------------------------- /examples/choo-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/choo-example/package.json -------------------------------------------------------------------------------- /examples/choo-example/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/choo-example/store.js -------------------------------------------------------------------------------- /examples/choo-example/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/choo-example/test.js -------------------------------------------------------------------------------- /examples/choo-example/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/choo-example/view.js -------------------------------------------------------------------------------- /examples/with-inferno/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /examples/with-inferno/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/with-inferno/index.html -------------------------------------------------------------------------------- /examples/with-inferno/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/with-inferno/index.js -------------------------------------------------------------------------------- /examples/with-inferno/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/with-inferno/package.json -------------------------------------------------------------------------------- /examples/with-lit-html/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /examples/with-lit-html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/with-lit-html/index.html -------------------------------------------------------------------------------- /examples/with-lit-html/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/with-lit-html/index.js -------------------------------------------------------------------------------- /examples/with-lit-html/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/with-lit-html/package.json -------------------------------------------------------------------------------- /examples/with-nanomorph/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /examples/with-nanomorph/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/with-nanomorph/index.js -------------------------------------------------------------------------------- /examples/with-nanomorph/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/with-nanomorph/package.json -------------------------------------------------------------------------------- /examples/with-preact/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /examples/with-preact/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/with-preact/index.html -------------------------------------------------------------------------------- /examples/with-preact/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/with-preact/index.js -------------------------------------------------------------------------------- /examples/with-preact/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/with-preact/package.json -------------------------------------------------------------------------------- /examples/with-react-jsx/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /examples/with-react-jsx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/with-react-jsx/index.html -------------------------------------------------------------------------------- /examples/with-react-jsx/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/with-react-jsx/index.js -------------------------------------------------------------------------------- /examples/with-react-jsx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/with-react-jsx/package.json -------------------------------------------------------------------------------- /examples/with-react/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /examples/with-react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/with-react/index.html -------------------------------------------------------------------------------- /examples/with-react/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/with-react/index.js -------------------------------------------------------------------------------- /examples/with-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/with-react/package.json -------------------------------------------------------------------------------- /examples/with-vue-jsx/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /examples/with-vue-jsx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/with-vue-jsx/index.html -------------------------------------------------------------------------------- /examples/with-vue-jsx/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/with-vue-jsx/index.js -------------------------------------------------------------------------------- /examples/with-vue-jsx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/examples/with-vue-jsx/package.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongacnik/monoapp/HEAD/readme.md --------------------------------------------------------------------------------