| .. | ||
| src | ||
| stories | ||
| test | ||
| CHANGELOG.md | ||
| index.js | ||
| package.json | ||
| README.md | ||
Ajax
ajax is the global manager for handling all ajax requests.
It is a promise based system for fetching data, based on axios
Live Demo/Documentation
See our storybook for a live demo and documentation
How to use
Installation
npm i --save @lion/ajax
Example
import { ajax } from '@lion/ajax';
ajax.get('data.json').then(response => console.log(response));