CORE3.1 add CORS support

Setting up CORS To setup CORS for your application you use the Microsoft.AspNetCore.Cors package. In your project.json file, add the following: “dependencies”: { “Microsoft.AspNet.Cors”: “6.0.0-rc1-final”, }, Add the CORS services in Startup.cs: public void ConfigureServices(IServiceCollection services) { services.AddCors(); } Enabling CORS with middleware To enable CORS for your entire application add the CORS middleware to your request …

Init react, react-bootstrap, react-router-dom

Setting up a React Environment If you have NPM and Node.js installed, you can create a React application by first installing the create-react-app. If you’ve already created the create-react-app you can skip this section. Install create-react-app by running this command in your npm install -g create-react-app Then you are able to create a React application, …