文件名称:my-request:基于superagent和supertest的请求模块
文件大小:5KB
文件格式:ZIP
更新时间:2024-07-11 05:13:40
JavaScript
我的请求 基于superagent和supertest的请求模块 安装 npm install my-request 示例代码 受 Supertest 和 Superagent 的启发,my-request 使用与 supertest 相同的逻辑来做一个请求示例: var request = require ( 'my-request' ) , myRequest = request . init ( 'http://alonso-thoughtsapi.rhcloud.com' ) ; myRequest . get ( '/' ) . end ( function ( res ) { console . log ( res . body ) ; // { hello: 'world' } } ) ; 应用程序接口 #setPer
【文件预览】:
my-request-master
----index.js(1KB)
----package.json(595B)
----test()
--------index.js(3KB)
----LICENSE(1KB)
----.gitignore(587B)
----lib()
--------my-request.js(421B)
----README.md(3KB)