Code Monkey home page Code Monkey logo

Comments (3)

franciscop avatar franciscop commented on June 4, 2024 1

By the way, if i just use this [...] instead of the "cors" package, will it work?

If you need to ask that question, you would probably better use the cors packages TBH, since it's well documented and explained (and this is a security-critical package after all). Instead of your express example, you can use it with server by wrapping it, either with the snippet on the docs I shared or sth like this if you use import/export:

import server from 'server';
import ExpressCors from 'cors';

const cors = server.utils.modern(ExpressCors({
  origin: ['https://example.com', 'https://example2.com']
}));

// Launch the server with this specific middleware
server({}, cors, ...);

from server.

franciscop avatar franciscop commented on June 4, 2024

Sure, how would you normally do it with e.g. express? You have a CORS example in the documentation, does that help?

from server.

grrbm avatar grrbm commented on June 4, 2024

this is how you enable cors preflight with express:

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

app.options('*', cors()) // include before other routes

This enables pre-flight for all routes, which is what i want.

And yeah, your example helps ! This:

ctx => ctx.method.toLowerCase() === 'options' ? 200 : false

seems to be a simple middleware to enable pre-flight, right ?

I'm using "cors" npm package, so it seems i would have to configure this package itself, in order to enable pre-flight.

By the way, if i just use this:

const cors = [
  ctx => header("Access-Control-Allow-Origin", "*"),
  ctx => header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept"),
  ctx => header("Access-Control-Allow-Methods", "GET, PUT, PATCH, POST, DELETE, HEAD"),
  ctx => ctx.method.toLowerCase() === 'options' ? 200 : false
];

instead of the "cors" package, will it work ?

Anyways,

thanks so much for your fast reply !!

from server.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.