1.0.0 • Published 4 years ago
@rogal/http-client v1.0.0
Http Client

An adapter to make http requests and abstract from fetching packages
Install
npm install @rogal/http-client --save
Getting Started
const httpClient = new HttpClient({
baseUrl: 'http://localhost:3001',
});
httpClient.get('/todos').then(response => {
console.log('response', response);
}).catch(err => {
console.log('err doing response')
})
Methods
- httpClient.get
- httpClient.post
- httpClient.put
- httpClient.delete
Interceptor
We offer you an interceptor so you can observe calls.
HttpClientInterceptor().then(response => {
// do something with the response
}).catch(err => {
// do something with the error
}) ;
How to contribute
You can install and have an enviroment ready for use with Storybook
npm i
npm start
License
MIT
1.0.0
4 years ago
1.0.0-beta.7
4 years ago
1.0.0-beta.6
4 years ago
1.0.0-beta.5
4 years ago
1.0.0-beta.4
5 years ago
1.0.0-beta.3
5 years ago
1.0.0-beta.2
5 years ago
1.0.0-beta.1
5 years ago