Skip to content

Latest commit

 

History

History
 
 

ajax

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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