├── .codeclimate.yml ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── src ├── express │ ├── decorators.spec.ts │ ├── decorators.ts │ ├── descriptions.ts │ ├── namings.ts │ ├── path-util.spec.ts │ ├── path-util.ts │ ├── registry-context.spec.ts │ ├── registry-delete.spec.ts │ ├── registry-get.spec.ts │ ├── registry-post.spec.ts │ ├── registry-promis.spec.ts │ ├── registry-put.spec.ts │ ├── registry-sec.spec.ts │ ├── registry.spec.ts │ ├── registry.ts │ ├── renderers.spec.ts │ ├── renderers.ts │ ├── service-registry.spec.ts │ ├── service-registry.ts │ ├── test-util.spec.ts │ └── testviews │ │ └── index.pug └── js-restful-express.ts ├── tsconfig.json └── yarn.lock /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/*{.,-}min.js 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/package.json -------------------------------------------------------------------------------- /src/express/decorators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/src/express/decorators.spec.ts -------------------------------------------------------------------------------- /src/express/decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/src/express/decorators.ts -------------------------------------------------------------------------------- /src/express/descriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/src/express/descriptions.ts -------------------------------------------------------------------------------- /src/express/namings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/src/express/namings.ts -------------------------------------------------------------------------------- /src/express/path-util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/src/express/path-util.spec.ts -------------------------------------------------------------------------------- /src/express/path-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/src/express/path-util.ts -------------------------------------------------------------------------------- /src/express/registry-context.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/src/express/registry-context.spec.ts -------------------------------------------------------------------------------- /src/express/registry-delete.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/src/express/registry-delete.spec.ts -------------------------------------------------------------------------------- /src/express/registry-get.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/src/express/registry-get.spec.ts -------------------------------------------------------------------------------- /src/express/registry-post.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/src/express/registry-post.spec.ts -------------------------------------------------------------------------------- /src/express/registry-promis.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/src/express/registry-promis.spec.ts -------------------------------------------------------------------------------- /src/express/registry-put.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/src/express/registry-put.spec.ts -------------------------------------------------------------------------------- /src/express/registry-sec.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/src/express/registry-sec.spec.ts -------------------------------------------------------------------------------- /src/express/registry.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/src/express/registry.spec.ts -------------------------------------------------------------------------------- /src/express/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/src/express/registry.ts -------------------------------------------------------------------------------- /src/express/renderers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/src/express/renderers.spec.ts -------------------------------------------------------------------------------- /src/express/renderers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/src/express/renderers.ts -------------------------------------------------------------------------------- /src/express/service-registry.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/src/express/service-registry.spec.ts -------------------------------------------------------------------------------- /src/express/service-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/src/express/service-registry.ts -------------------------------------------------------------------------------- /src/express/test-util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/src/express/test-util.spec.ts -------------------------------------------------------------------------------- /src/express/testviews/index.pug: -------------------------------------------------------------------------------- 1 | div a !{a} -------------------------------------------------------------------------------- /src/js-restful-express.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/src/js-restful-express.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/js-restful-express/HEAD/yarn.lock --------------------------------------------------------------------------------