├── .editorconfig ├── .eslintrc.json ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── avatar.jpg ├── blueprints ├── console.js └── loaders │ ├── file.js │ └── http.js ├── config ├── bootstrap.js ├── build.js ├── dev.eslintrc.js ├── dev.js ├── min.js └── rollup.config.js ├── lib ├── BlueprintBase.js ├── BlueprintStub.js ├── Frame.js ├── ModuleLoader.js ├── ObjectModel.js ├── bootstrap.js ├── exports.js ├── flow.js ├── helpers.js ├── index.js ├── loader.js ├── logger.js ├── methods.js └── schema.js ├── package.json └── shrinkwrap.yaml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/README.md -------------------------------------------------------------------------------- /avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/avatar.jpg -------------------------------------------------------------------------------- /blueprints/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/blueprints/console.js -------------------------------------------------------------------------------- /blueprints/loaders/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/blueprints/loaders/file.js -------------------------------------------------------------------------------- /blueprints/loaders/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/blueprints/loaders/http.js -------------------------------------------------------------------------------- /config/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/config/bootstrap.js -------------------------------------------------------------------------------- /config/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/config/build.js -------------------------------------------------------------------------------- /config/dev.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/config/dev.eslintrc.js -------------------------------------------------------------------------------- /config/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/config/dev.js -------------------------------------------------------------------------------- /config/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/config/min.js -------------------------------------------------------------------------------- /config/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/config/rollup.config.js -------------------------------------------------------------------------------- /lib/BlueprintBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/lib/BlueprintBase.js -------------------------------------------------------------------------------- /lib/BlueprintStub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/lib/BlueprintStub.js -------------------------------------------------------------------------------- /lib/Frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/lib/Frame.js -------------------------------------------------------------------------------- /lib/ModuleLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/lib/ModuleLoader.js -------------------------------------------------------------------------------- /lib/ObjectModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/lib/ObjectModel.js -------------------------------------------------------------------------------- /lib/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/lib/bootstrap.js -------------------------------------------------------------------------------- /lib/exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/lib/exports.js -------------------------------------------------------------------------------- /lib/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/lib/flow.js -------------------------------------------------------------------------------- /lib/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/lib/helpers.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/lib/loader.js -------------------------------------------------------------------------------- /lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/lib/logger.js -------------------------------------------------------------------------------- /lib/methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/lib/methods.js -------------------------------------------------------------------------------- /lib/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/lib/schema.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/package.json -------------------------------------------------------------------------------- /shrinkwrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frame-js/Frame/HEAD/shrinkwrap.yaml --------------------------------------------------------------------------------