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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@cjtierney/nerwjs

v1.0.4

Published

A lightweight experimental neural network library.

Readme

NERW.JS

Note: This project is currently in beta, and is missing a lot of features

Welcome to nerw.js, a lightweight neural network library. Nerw handles all the tough work for you, so you can forget all the hard work. Nerw is designed to be lightweight, and simple, and is intended for quickly creating artificial intelligence for simple games. You can check out an example of nerwjs in action!

Install

npm i @cjtierney/nerwjs

Usage

It's easy to create a simple network with just a few lines of code!

var nerw = require("@cjtierney/nerwjs");

// Create a new network instance
var network = new nerw.Network();

// Add inputs to the network
network.addInput("a");
network.addInput("b");

// Add hidden layers
network.addLayer("hiddenLayer", 3);

// Add an output
network.addOutput("result");

// Initiate the network
network.initiate();

This doesn't do much by it's self, so create a group of networks:

var networks = new nerw.NetworkGroup(20);

/*
You can treat a network group just like a normal network,
it automatically applies changes to all of the networks!
*/

networks.addInput("a");
networks.addInput("b");

networks.addLayer("hiddenLayerA", 5);
networks.addLayer("hiddenLayerB", 5);

networks.addOutput("result");

networks.initiate();

Now with a few networks running, we can start training it on a simple dataset, in this case, an XOR gate.

// simple xor function
function xor(a,b) {
	return (a+b)%2;
}

// it may take some time to get good results
// don't be discouraged if it takes some time
setInterval(function(){
	// reset the score of each network
	networks.each(function(n,i){
		n.score = 0;
	});
	
	// evaluate each of the networks to find the most accurate ones
	for (var i = 0; i < 10; i++) {
		networks.each(function(n,j){
			// create a random input
			var ins = [Math.round(Math.random()),Math.round(Math.random())];
			// get the network's output
			var output = n.activate(ins)[0];
			// get the expected output
			var expected = xor(ins[0],ins[1])*0.5+0.25;
			// add to the score based on the accuracy
			n.score += Math.abs(output-expected);
		});
	}
	networks.sort(); // sort the networks by score
	networks.generation(); // remove the worst networks, and replace them with better ones
	networks.sort(); // sort the networks again

	// see how much your network has improved!
	var ins = [Math.round(Math.random()),Math.round(Math.random())];
	var expected = xor(ins[0],ins[1]);
	var output = (networks.networks[0].activate(ins)[0]-0.25)*2;
	console.log("Expected: " + expected + "\nOutput: " + output);
}, 10);

When I was making this example, I found that having the network find values other than 0 and 1 helped, so I replaced 0 with 0.25 and 1 with 0.75, and change it back to 0 and 1 when displaying it on the console.

Documentation

Not sure what's going on? Check here!

Methods

NetworkGroup

NetworkGroup.addInput Adds an input to each of the networks NetworkGroup.addLayer Adds a hidden layer to each of the networks NetworkGroup.addOutput Adds an output to each of the networks NetworkGroup.initiate Initiates the networks NetworkGroup.sort Sorts the networks by their score (lowest to highest) NetworkGroup.generation Removes the worst 50% of the networks and replaces them with new networks (higher score is considered worse) NetworkGroup.each Executes a callback for each of the networks

networks.each(function(n,i){
	// n represents a network
	// use n.score = x to modify the network's score
	n.score += 1;
	// use n.activate to test the ouput of a network
	console.log(n.activate([23,71]));

	// i represents the index of the array
	// not very useful most of the time
	console.log(i);
});

Network

Network.addInput Adds an input to the network Network.addLayer Adds a hidden layer to the network Network.addOutput Adds an output to the network Network.initiate Initiates the network Network.activate Returns the output of the network given the arguments Network.mutate Mutates the network Network.cloneNetwork Returns a clone of the network

Distribution

Note: This feature is currently experimental

Putting your network to use has never been easier! Just use the Network.export method, and write it's contents to a file. You're already almost there! Now just add your generated file as a script in your html page or require it in node.js, and you can call it from the ExportedNetwork.activate method.

var fs = require("fs");
fs.writeFileSync("./my_generated_file.js", Network.export("exportName"));

Node.js

var network = require("./my_generated_file.js");
var testValues = [12,64];
console.log(network.activate(testValues));

HTML Script Tag

<script src="./my_generated_file.js"></script>
<script>
	var testValues = [12,64];
	console.log(exportName.activate(testValues));
</script>

Tested on Windows 10 (64 bit) with node v15.14.0 and npm v7.7.6