Related
- Streamlining Your Workflow With the Jenkins HTTP Request Plugin: A Guide to Replacing CURL in Scripts
- Nginx + Node.JS: Perform Identification and Authentication
- Postman Collection for Salesforce: Mock Servers and Code Snippets
- How To Validate HTTP Post Request Body - Restful Web Services With Spring Framework | Spring Boot
- DZone
- Coding
- JavaScript
- Enabling CORS in Node.js [Snippets]
Enabling CORS in Node.js [Snippets]
This post shows how to enable CORS in Node. for your cross-domain requests.
Join the DZone community and get the full member experience.
Join For FreeThis post shows how to enable Cross Origin Resource Sharing (CORS) in Node. CORS essentially means cross-domain requests.
Simply using this line of code to set a header on your response will enable CORS.
res.header("Access-Control-Allow-Origin", "*");
This code snippet, however, would enable CORS for all resources on your server.
app.use(function(req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
next();
});
This can also be used for resource files as you can see here.
app.get('/test', function(req, res){
var file = __dirname + '/MyFile.zip';
res.download(file); // Set disposition and send it.
});
Here is the code of a complete example:
var express = require('express');
var app = express();
app.use(function(req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
next();
});
app.get('/', function (req, res) {
var data = {
"Fruits": [
"apple",
"orange" ]
};
res.json(data);
});
app.get('/test', function(req, res){
var file = __dirname + '/ZipFile.zip';
res.download(file); // Set disposition and send it.
});
Snippet (programming)
Node.js
POST (HTTP)
Requests
Published at DZone with permission of Madhuka Udantha. See the original article here.
Opinions expressed by DZone contributors are their own.
Related
-
Streamlining Your Workflow With the Jenkins HTTP Request Plugin: A Guide to Replacing CURL in Scripts
-
Nginx + Node.JS: Perform Identification and Authentication
-
Postman Collection for Salesforce: Mock Servers and Code Snippets
-
How To Validate HTTP Post Request Body - Restful Web Services With Spring Framework | Spring Boot
Partner Resources
×
