receive-json:通过 HTTP 请求接收 JSON 的 Node.js 模块

时间:2024-07-28 23:48:01
【文件属性】:

文件名称:receive-json:通过 HTTP 请求接收 JSON 的 Node.js 模块

文件大小:3KB

文件格式:ZIP

更新时间:2024-07-28 23:48:01

JavaScript

接收-json 通过 HTTP 请求接收 JSON。 安装 npm install receive-json 用法 例子 var http = require ( 'http' ) ; var onjson = require ( 'receive-json' ) ; http . createServer ( function ( req , res ) { onjson ( req , function ( err , body ) { if ( err ) { res . statusCode = 400 ; return res . end ( 'oh no!' ) ; } res . end ( 'awesome!' ) ; } ) ; } ) . listen ( 3000 ) ; 以下示例使用limit选项,该选


【文件预览】:
receive-json-master
----.travis.yml(95B)
----index.js(631B)
----test.js(1KB)
----package.json(727B)
----.gitignore(13B)
----README.md(2KB)
----LICENSE.txt(1KB)

网友评论