Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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')})
Source by www.npmjs.com #
 
PREVIOUS NEXT
Tagged: #cors #package #install #npm
ADD COMMENT
Topic
Name
6+7 =