Skip to content
View lqisa's full-sized avatar
🚮
give up thinking
🚮
give up thinking
Block or Report

Block or report lqisa

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Acheiving CORS via a Node HTTP Server Acheiving CORS via a Node HTTP Server
    1
    // Create our server
    2
    var server;
    3
    server = http.createServer(function(req,res){
    4
    	// Set CORS headers
    5
    	res.setHeader('Access-Control-Allow-Origin', '*');