@jswork/weapp-http-schema
v2.0.13
Published
Http schema for weapp.
Downloads
51
Readme
weapp-http-schema
Http schema for weapp.
installation
npm install @jswork/weapp-http-schema
usage
import httpSchema from '@jswork/weapp-http-schema';
const apis = httpSchema({
host: 'https://api.github.com',
request: ['', 'json'],
items: [
{
items: {
profile: ['get', '/users/afeiship']
}
}
]
});
apis.profile().then((res) => {
console.log(res);
});
license
Code released under the MIT license.