文件名称:small-cor:非常轻量级的 Express 中间件模块,使跨源资源共享变得容易
文件大小:4KB
文件格式:ZIP
更新时间:2024-07-18 19:29:48
JavaScript
小科尔 轻量级中间件,使跨源资源共享变得容易。 安装 npm install small-cor 示例用法 var express = require ( 'express' ) ; var app = express ( ) ; var smallCOR = require ( 'small-cor' ) ; app . use ( smallCOR ( { origin : '*' , methods : [ 'GET' ] , headers : [ 'X-Custom' ] } ) ) ; app . get ( '/' , function ( req , res ) { res . json ( { message : 'hello' } ) ; } ) ; app . listen ( 3000 ) ; 对 localhost:3000 的 HTTP
【文件预览】:
small-cor-master
----.gitignore(46B)
----package.json(707B)
----.travis.yml(68B)
----LICENSE(1KB)
----index.js(1KB)
----README.md(1KB)
----test()
--------test.js(1011B)