Answers for "install cors"

-1

install cors

npm install cors
Posted by: Guest on April-21-2021
4

cors express

var allowedOrigins = ['http://localhost:3000',
                      'http://yourapp.com'];
app.use(cors({  
  origin: function(origin, callback){
    // allow requests with no origin     
    // (like mobile apps or curl requests)    
    if(!origin) 
      return callback(null, true);    
    if(allowedOrigins.indexOf(origin) === -1){
      var msg = 'The CORS policy for this site does not ' +                
          'allow access from the specified Origin.';      
      return callback(new Error(msg), false);    
    }    
    return callback(null, true);  
  }
}));
Posted by: Guest on August-05-2020
-6

cors npm

installation :

$ npm i cors

usage :

var express = require('express')
var cors = require('cors')
var app = express()
 
app.use(cors())
 
app.get('/products/:id', function (req, res, next) {
  res.json({msg: 'This is CORS-enabled for all origins!'})
})
 
app.listen(80, function () {
  console.log('CORS-enabled web server listening on port 80')
})
Posted by: Guest on March-24-2021
2

cors package install npm

var express = require('express')var cors = require('cors')var app = express() app.get('/products/:id', cors(), function (req, res, next) {  res.json({msg: 'This is CORS-enabled for a Single Route'})}) app.listen(80, function () {  console.log('CORS-enabled web server listening on port 80')})
Posted by: Guest on September-21-2020
1

cors package install npm

var express = require('express')var cors = require('cors')var app = express() app.use(cors()) app.get('/products/:id', function (req, res, next) {  res.json({msg: 'This is CORS-enabled for all origins!'})}) app.listen(80, function () {  console.log('CORS-enabled web server listening on port 80')})
Posted by: Guest on September-21-2020
0

Install Cors

$ npm i express cors
Posted by: Guest on October-04-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language