npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

quietriot

v0.1.2

Published

Sean McCullough's JS port of Stefan Gustavson's Java Perlin noise generator.

Downloads

13

Readme

Build status

quietriot

"Come on Feel the Noise..." - Kevin DuBrow, Quiet Riot

Sean McCullough's JS port of Stefan Gustavson's Java Perlin noise generator. https://gist.github.com/304522

Ported from Stefan Gustavson's java implementation. Read Stefan's excellent paper for details on how this code works. simplexnoise.pdf

Returns a number between 1 and -1 in a pattern that simulates a natural system. Use it to create natural looking effects.

##Install

To include quietriot as a component in your project, use the node module.

npm install quietriot --save

You can also use the standalone version and reference the js file from your document.

<html>
  <head>
    <script src="scripts/quietriot.min.js" type="text/javascript" charset="utf-8"></script>
  </head>
  ...

##Usage

The module exports a SimplexNoise class. In a nodejs project, you access it via:

var SimplexNoise = require('../src/quietriot');
var output = SimplexNoise.noise(100, 100);

Pass a sequence to SimplexNoise like a simple counter. The noise() function will return a number between 1 and -1.

for (var i = 0; i < 3000; i++) {
  var n = SimplexNoise.noise(i * 0.005, i * 0.005);
  console.log(n);
}

... the console reports...

0.3847620388983191
5.960162692938055
11.521264167148217
17.054733369185694
22.547320097353587
27.985896809088334
33.35749804547538
38.649359400666405
43.84895592589604
48.9440398588889
53.92267757056956
58.77328562253707
63.48466583028164

Map these number to a range to achieve natural looking motion, color palettes or even sound.

Please review the docs for more details.

##Building this project

This project uses Grunt. To build the project first install the node modules.

npm install

Next, run grunt.

grunt

To run the tests, run 'npm test'.

npm test

To check test coverage run 'grunt coverage'.

grunt coverage

A pre-commit hook is defined in /pre-commit that runs jshint. To use the hook, run the following:

ln -s ../../pre-commit .git/hooks/pre-commit

A post-commit hook is defined in /post-commit that runs the Plato complexity analysis tools. To use the hook, run the following:

ln -s ../../post-commit .git/hooks/post-commit

View the code complexity report.