0.5.0 • Published 7 years ago
@moqada/simple-api-client v0.5.0
simple-api-client
Simple API Client for JavaScript.
WIP
Installation
npm install --save @moqada/simple-api-client
Usage
JavaScript
import SimpleAPIClient from '@moqada/simple-api-client';
class APIClinet extends SimpleAPIClient {
constructor({token, custom}: {token: string, custom: string}) {
super({endpoint: 'http://api.example.com/v1'});
this.token = token;
this.custom = custom;
}
getDefaultOptions(): Object {
return {
headers: {
'Authorization': `Bearer ${this.token}`,
'X-Custom-Header': `${this.custom}`
}
};
}
toResponse(error: ?Object, response: ?Object): Object {
if (error) {
return {error};
}
return {
body: response.body
};
}
getUsers(query): Promise<{body: Object}, {error: Object}> {
return this.get('/users', {query});
}
}
const clinet = new APIClinet({token: 'xxxxxxxyyyyy', custom: 'foobar'});
client.getUsers({offset: 20, limit: 10}).then(({body}) => {
console.log(body);
}).catch(({error}) => {
console.error(error);
}):
TypeScript
A import style is different from JavaScript.
import {SimpleAPIClient} from '@moqada/simple-api-client';
Todo
- Test
- Support TypeScript (experimental)
Related
- @moqada/simple-api-client-generator - A CLI generating API Client from JSON Hyper Schema
0.5.0
7 years ago
0.4.0
7 years ago
0.3.1
8 years ago
0.3.0
8 years ago
0.3.0-beta.2
8 years ago
0.3.0-beta.1
8 years ago
0.2.0
9 years ago
0.1.1
9 years ago
0.1.0
9 years ago