Co-authored-by: Joren Broekema <Joren.Broekema@ing.com> Co-authored-by: Alex Ghiu <Alex.Ghiu@ing.com> Co-authored-by: Thijs Louisse <Thijs.Louisse@ing.com>
553 B
553 B
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));