Answers for "cors config express"

17

node express cors headers

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-2020
1

allow cors express

app.use(function(req, res, next) {
  res.header("Access-Control-Allow-Origin", "YOUR-DOMAIN.TLD"); // update to match the domain you will make the request from
  res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
  next();
});
Posted by: Guest on June-04-2020
116

cors npm

/* 
Installation
$ npm install cors
*/

// Simple Usage (Enable All CORS Requests)
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(3000, function () {
   console.log("CORS-enabled web server listening on port 3000");
});
Posted by: Guest on January-04-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
0

express js cors

//Cors = Cross-origin resource sharing

var express = require('express');
var cors = require('cors');
var app = express();

app.use(cors());

var corsOptions = {
  origin: 'http://example.com',
  optionsSuccessStatus: 200 // some legacy browsers (IE11, various SmartTVs) choke on 204
}

app.listen(80, function () {
  console.log('CORS-enabled web server listening on port 80')
})
Posted by: Guest on June-09-2021
-1

express cors policy

$ npm install cors
Posted by: Guest on March-22-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language