[READ-ONLY] Mirror of https://github.com/flo-bit/uber-noise. advanced noise generation for the browser and node.js flo-bit.dev/uber-noise/
browser nodejs noise noise-generator npm typescript
0

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #7 from flo-bit/next

update readme

authored by

Florian and committed by
GitHub
(Dec 24, 2025, 3:45 PM +0100) 599f3b47 643f876f

+13 -1
+12
Readme.md
··· 13 13 14 14 ## Install 15 15 16 + ### Use in the browser 17 + 18 + Add the following to your html's file `<head>` 19 + 20 + ```html 21 + <script 22 + src="https://unpkg.com/uber-noise@0.3.0/dist/uber-noise.umd.js" 23 + ></script> 24 + ``` 25 + 26 + ### Install as npm package 27 + 16 28 ```bash 17 29 npm i uber-noise 18 30 ```
+1 -1
examples/3D/three-simple-3D-sphere.html
··· 19 19 <!-- for production --> 20 20 <!-- <script src="https://unpkg.com/uber-noise@next"></script> --> 21 21 <script 22 - src="https://unpkg.com/uber-noise@0.3.0" 22 + src="https://unpkg.com/uber-noise@0.3.0/dist/uber-noise.umd.js" 23 23 ></script> 24 24 </head> 25 25