├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── lib ├── index.js └── platform.js ├── package.json └── sample-apps └── auto-route-binding.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facetta/platform/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facetta/platform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facetta/platform/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facetta/platform/HEAD/index.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facetta/platform/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facetta/platform/HEAD/lib/platform.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facetta/platform/HEAD/package.json -------------------------------------------------------------------------------- /sample-apps/auto-route-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facetta/platform/HEAD/sample-apps/auto-route-binding.js --------------------------------------------------------------------------------