├── .gitignore ├── favicon.png ├── index.html ├── script.js └── server ├── app.js ├── package-lock.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | /server/node_modules -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnwithsumit/cors-tutorial/HEAD/favicon.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnwithsumit/cors-tutorial/HEAD/index.html -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnwithsumit/cors-tutorial/HEAD/script.js -------------------------------------------------------------------------------- /server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnwithsumit/cors-tutorial/HEAD/server/app.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnwithsumit/cors-tutorial/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnwithsumit/cors-tutorial/HEAD/server/package.json --------------------------------------------------------------------------------