Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 553 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 553 Bytes

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));