# Iguana [![Build Status](https://travis-ci.com/Paparoni/Iguana.svg?branch=master)](https://travis-ci.com/Paparoni/Iguana)
>A lightweight JavaScript library with useful functions, custom classes and shortcuts

[View Documentation](https://paparoni.github.io/Iguana/)

## Install with npm
In terminal:
```shell
npm install iguana
```
In your node js file:
```javascript
const iguana = require('iguana');
const I = new iguana();
```
## Install with local HTML & JavaScript

 - Download code found in the `dist` folder
 - Include this in your HTML file:
 
   ```HTML
    <script src="iguana.min.js"></script>
   ```
 - And in your JS File:
 ```javascript
 const I = new Iguana();
 ```
