├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── appveyor.yml ├── bin └── index.js ├── config.json ├── config └── cors.js ├── instructions.js ├── instructions.md ├── japaFile.js ├── package.json ├── providers └── CorsProvider.js ├── src └── Cors │ └── index.js └── test └── cors.spec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/bin/index.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/config.json -------------------------------------------------------------------------------- /config/cors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/config/cors.js -------------------------------------------------------------------------------- /instructions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/instructions.js -------------------------------------------------------------------------------- /instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/instructions.md -------------------------------------------------------------------------------- /japaFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/japaFile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/package.json -------------------------------------------------------------------------------- /providers/CorsProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/providers/CorsProvider.js -------------------------------------------------------------------------------- /src/Cors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/src/Cors/index.js -------------------------------------------------------------------------------- /test/cors.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonisjs/adonis-cors/HEAD/test/cors.spec.js --------------------------------------------------------------------------------