├── .gitignore ├── LICENSE ├── NOTICE.md ├── README.md ├── changelog.md ├── package.json ├── playground ├── codeid │ ├── bulma-lib.html │ ├── default.html │ ├── readme-actions-1.html │ ├── readme-comps-1.html │ ├── readme-data-1.html │ ├── readme-data-2.html │ ├── readme-data-3.html │ ├── readme-gs.html │ ├── readme-handlers-1.html │ ├── readme-handlers-2.html │ └── readme-handlers-3.html ├── index.html ├── libs │ ├── bulma.html │ ├── codemirror.html │ ├── d3.html │ └── playground.html ├── playground-iframe-bulma.html ├── playground-iframe-clean.html ├── playground.css ├── playground.less └── tutorial │ ├── index.html │ ├── t-binding.html │ ├── t-components.html │ ├── t-expr.html │ ├── t-forms.html │ ├── t-gs.html │ ├── t-handlers.html │ ├── t-intro.html │ ├── t-libraries.html │ ├── t-local-handlers.html │ ├── t-remote-actions.html │ ├── t-remote-handlers.html │ └── t-wrapup.html ├── src ├── datactx.ts ├── dbctx.ts ├── error.ts ├── hibiki-grammar.js ├── hibiki-grammar.ne ├── hibiki-module.ts ├── hibiki-parser.ts ├── hibiki.ts ├── html-parser.ts ├── jsfuncs.ts ├── module-types │ ├── cn.d.ts │ ├── md5.d.ts │ └── sprintf-js.d.ts ├── modules.ts ├── nodes.tsx ├── nodeutils.tsx ├── request.ts ├── state.ts ├── types.ts └── utils.ts ├── static ├── ck1.jpg ├── hibiki-test.js ├── index.html ├── libs │ ├── bulma-table.html │ ├── bulma.html │ └── d3.html ├── test-automerge.html ├── test-basic.html ├── test-comp.html ├── test-d3.html ├── test-dd.html ├── test-error.html ├── test-form-controls.html ├── test-inject.html ├── test-noattr.html ├── test-ref.html ├── test.css └── test.less ├── webpack.common.js ├── webpack.dev.js ├── webpack.prod.js ├── www └── index.html └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/changelog.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/package.json -------------------------------------------------------------------------------- /playground/codeid/bulma-lib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/codeid/bulma-lib.html -------------------------------------------------------------------------------- /playground/codeid/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/codeid/default.html -------------------------------------------------------------------------------- /playground/codeid/readme-actions-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/codeid/readme-actions-1.html -------------------------------------------------------------------------------- /playground/codeid/readme-comps-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/codeid/readme-comps-1.html -------------------------------------------------------------------------------- /playground/codeid/readme-data-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/codeid/readme-data-1.html -------------------------------------------------------------------------------- /playground/codeid/readme-data-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/codeid/readme-data-2.html -------------------------------------------------------------------------------- /playground/codeid/readme-data-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/codeid/readme-data-3.html -------------------------------------------------------------------------------- /playground/codeid/readme-gs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/codeid/readme-gs.html -------------------------------------------------------------------------------- /playground/codeid/readme-handlers-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/codeid/readme-handlers-1.html -------------------------------------------------------------------------------- /playground/codeid/readme-handlers-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/codeid/readme-handlers-2.html -------------------------------------------------------------------------------- /playground/codeid/readme-handlers-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/codeid/readme-handlers-3.html -------------------------------------------------------------------------------- /playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/index.html -------------------------------------------------------------------------------- /playground/libs/bulma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/libs/bulma.html -------------------------------------------------------------------------------- /playground/libs/codemirror.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/libs/codemirror.html -------------------------------------------------------------------------------- /playground/libs/d3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/libs/d3.html -------------------------------------------------------------------------------- /playground/libs/playground.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/libs/playground.html -------------------------------------------------------------------------------- /playground/playground-iframe-bulma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/playground-iframe-bulma.html -------------------------------------------------------------------------------- /playground/playground-iframe-clean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/playground-iframe-clean.html -------------------------------------------------------------------------------- /playground/playground.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/playground.css -------------------------------------------------------------------------------- /playground/playground.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/playground.less -------------------------------------------------------------------------------- /playground/tutorial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/tutorial/index.html -------------------------------------------------------------------------------- /playground/tutorial/t-binding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/tutorial/t-binding.html -------------------------------------------------------------------------------- /playground/tutorial/t-components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/tutorial/t-components.html -------------------------------------------------------------------------------- /playground/tutorial/t-expr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/tutorial/t-expr.html -------------------------------------------------------------------------------- /playground/tutorial/t-forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/tutorial/t-forms.html -------------------------------------------------------------------------------- /playground/tutorial/t-gs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/tutorial/t-gs.html -------------------------------------------------------------------------------- /playground/tutorial/t-handlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/tutorial/t-handlers.html -------------------------------------------------------------------------------- /playground/tutorial/t-intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/tutorial/t-intro.html -------------------------------------------------------------------------------- /playground/tutorial/t-libraries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/tutorial/t-libraries.html -------------------------------------------------------------------------------- /playground/tutorial/t-local-handlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/tutorial/t-local-handlers.html -------------------------------------------------------------------------------- /playground/tutorial/t-remote-actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/tutorial/t-remote-actions.html -------------------------------------------------------------------------------- /playground/tutorial/t-remote-handlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/tutorial/t-remote-handlers.html -------------------------------------------------------------------------------- /playground/tutorial/t-wrapup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/playground/tutorial/t-wrapup.html -------------------------------------------------------------------------------- /src/datactx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/src/datactx.ts -------------------------------------------------------------------------------- /src/dbctx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/src/dbctx.ts -------------------------------------------------------------------------------- /src/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/src/error.ts -------------------------------------------------------------------------------- /src/hibiki-grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/src/hibiki-grammar.js -------------------------------------------------------------------------------- /src/hibiki-grammar.ne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/src/hibiki-grammar.ne -------------------------------------------------------------------------------- /src/hibiki-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/src/hibiki-module.ts -------------------------------------------------------------------------------- /src/hibiki-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/src/hibiki-parser.ts -------------------------------------------------------------------------------- /src/hibiki.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/src/hibiki.ts -------------------------------------------------------------------------------- /src/html-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/src/html-parser.ts -------------------------------------------------------------------------------- /src/jsfuncs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/src/jsfuncs.ts -------------------------------------------------------------------------------- /src/module-types/cn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/src/module-types/cn.d.ts -------------------------------------------------------------------------------- /src/module-types/md5.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/src/module-types/md5.d.ts -------------------------------------------------------------------------------- /src/module-types/sprintf-js.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/src/module-types/sprintf-js.d.ts -------------------------------------------------------------------------------- /src/modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/src/modules.ts -------------------------------------------------------------------------------- /src/nodes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/src/nodes.tsx -------------------------------------------------------------------------------- /src/nodeutils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/src/nodeutils.tsx -------------------------------------------------------------------------------- /src/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/src/request.ts -------------------------------------------------------------------------------- /src/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/src/state.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/src/utils.ts -------------------------------------------------------------------------------- /static/ck1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/static/ck1.jpg -------------------------------------------------------------------------------- /static/hibiki-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/static/hibiki-test.js -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/static/index.html -------------------------------------------------------------------------------- /static/libs/bulma-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/static/libs/bulma-table.html -------------------------------------------------------------------------------- /static/libs/bulma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/static/libs/bulma.html -------------------------------------------------------------------------------- /static/libs/d3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/static/libs/d3.html -------------------------------------------------------------------------------- /static/test-automerge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/static/test-automerge.html -------------------------------------------------------------------------------- /static/test-basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/static/test-basic.html -------------------------------------------------------------------------------- /static/test-comp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/static/test-comp.html -------------------------------------------------------------------------------- /static/test-d3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/static/test-d3.html -------------------------------------------------------------------------------- /static/test-dd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/static/test-dd.html -------------------------------------------------------------------------------- /static/test-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/static/test-error.html -------------------------------------------------------------------------------- /static/test-form-controls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/static/test-form-controls.html -------------------------------------------------------------------------------- /static/test-inject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/static/test-inject.html -------------------------------------------------------------------------------- /static/test-noattr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/static/test-noattr.html -------------------------------------------------------------------------------- /static/test-ref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/static/test-ref.html -------------------------------------------------------------------------------- /static/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/static/test.css -------------------------------------------------------------------------------- /static/test.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/static/test.less -------------------------------------------------------------------------------- /webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/webpack.common.js -------------------------------------------------------------------------------- /webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/webpack.dev.js -------------------------------------------------------------------------------- /webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/webpack.prod.js -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/www/index.html -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashborg/hibiki/HEAD/yarn.lock --------------------------------------------------------------------------------