···11## uber-noise
2233-Test
44-53advanced noise generation for the browser and node.js
6475> :warning: **Work in progress. Expect breaking changes!**
8697## Install
1081111-### Node.js
1212-1313-add uber-noise to your project and import/require it
99+add uber-noise to your project and import it
14101511```bash
1612npm i uber-noise
1713```
18141915```javascript
2020-const UberNoise = require("uber-noise");
2121-// OR
2216import UberNoise from "uber-noise";
2323-```
2424-2525-### Browser
2626-2727-add script tag to your html and use the global class variable `UberNoise`
2828-2929-```html
3030-<script src="https://cdn.jsdelivr.net/npm/uber-noise@0.1.8"></script>
3131-```
3232-3333-```javascript
3434-const noise = new UberNoise();
3535-3636-const value = noise.get(x, y);
3717```
38183919## Usage