## For Browsers
For direct use in a web browser, download `ve2.js` then add a script element to your HTML in your `<head>`:

```html
<script src="ve2.js"></script>
```

## For NodeJS
To use with your NodeJS project, first install it in your project's directory:

```sh
npm install ve2
```

Then require it:

```js
const ve2 = require('ve2');
```

## Running tests
If you want to run the tests you can call (in the root of this project):

```sh
npm install
npm test
```
