# Start

This section deals with installation and documentation.

TIP

The library supports commonjs and Iife by default. If you need to support UMD or AMD format, you can build it yourself.

# Installation

# NPM

Command line installation

npm install -D axios-sugar

Add files by import statement

import AxiosSugar from 'axios-sugar';

# Script

insert axios-sugar.js or axios-sugar.bundle.js by using <script> tag

<script src="/path/to/axios-sugar.js "></script>
<!-- or -->
<script src="/path/to/axios-sugar.bundle.js "></script>

# Use

AxiosSugar.get ('/path/to/sevice').then(res => {
  console.log (res.data);
}).catch(err => {
  console.log (err.reason.message); // all errors are put in reason property
};