stormer-http
v0.4.10
Published
Implementation of Stormer Store for HTTP clients
Downloads
21
Readme
stormer-http
Implementation of Stormer Store for HTTP clients
Requirements
Available stores
Http Store
const HttpStore = require('stormer-http').HttpStore;
const store = new HttpStore({
timeout: 1000,
baseUrl: 'http://endpoint.mock.com/v1',
});
Http HAL Store
See http://stateless.co/hal_specification.html
const HttpHalStore = require('stormer-http').HttpHalStore;
const store = new HttpHalStore({
timeout: 1000,
baseUrl: 'http://endpoint.mock.com/v1',
});
Contributing
This project is work in progress and we'd love more people contributing to it.
- Fork the repo
- Apply your changes
- Write tests
- Submit your pull request