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 🙏

© 2024 – Pkg Stats / Ryan Hefner

atom-js

v0.5.6

Published

Small JS class that provides async control flow, property listeners, barrier pattern, and more.

Downloads

21

Readme

OVERVIEW

Atom.js is a small, easy to use JavaScript class that provides asynchronous control flow, event/property listeners, barriers, and more.

FEATURES

  • Small: ~10K (~3K minified).
  • No dependencies: works in a browser, or in node.
  • Enables programming patterns that reduce the need for deeply nested callbacks and conditionals.

UNIT TESTS

To run from command line using node.js:

node test.js      // brief
node test.js -v   // verbose

To run in a browser, open test.html.

TUTORIAL

This is a.

var a

a is an atom.

var a = atom.create();

Properties

An atom has properties. The .get() and .set() methods may be employed to read and write values of any type.

a.set({
	pi: 3.141592653,
	r: 5,
	circ: function () {
		return 2 * a.get('pi') * a.get('r');
	}
});
console.log('Circumference: ' + a.get('circ')());

Use .has() to query for existence of a property, and .keys() to get a list of all properties that have been set.

if (a.has('game')) {
	console.log('What "a" brings to the table: ' + a.keys());
}

The .each() method lets you execute a function on a series of properties.

a.set({ r: 0xBA, g: 0xDA, b: 0x55 });
a.each(['r', 'g', 'b'], function (key, value) {
	console.log(key + ': ' + value);
});

Listeners

Listeners may be attached to atoms in a variety of ways.

To be notified as soon as a property is set, use the .once() method.

a.once('userInfo', function (userInfo) {
	alert('Welcome, ' + userInfo.name + '!');
});

Many atom methods can work with more than one property at a time.

a.once(['userInfo', 'appInfo'], function (user, app) {
	alert('Welcome to ' + app.name + ', ' + user.name + '!');
});

When you just want to know about the next change, even if the property is already set, use .next().

a.next('click', function (click) {
	alert('Are you done clicking on ' + click.button + ' yet?');
});

To watch for any future changes to a property, use the .on() (alias .bind()) method.

function myErrorHandler(error) {
	console.log('There was a grevious calamity of code in ' + a.get('module'));
	console.log(error);
}
a.on('error', myErrorHandler);

You can unregister any listener using .off() (alias .unbind()).

a.off('error', myErrorHandler);

Needs and Providers

You can register a provider for a property.

a.provide('privacyPolicy', function (done) {
	httpRequest(baseUrl + '/privacy.txt', function (content) {
		done(content);
	});
});

Providers only get invoked if there is a need, and if the property is not already set. Use the .need() method to declare a need for a particular property. If a corresponding provider is registered, it will be invoked. Otherwise, .need() behaves just like .once().

a.on('clickPrivacy', function () {
	a.need('privacyPolicy', function (text) {
		element.innerText = text;
	});
});

Entanglement

Properties of two or more atoms can be entangled, using the .entangle() method. When an entangled property gets set on one atom, the value will instantly propagate to the other.

var b = atom.create();
a.entangle(b, 'email');
a.set('email', '[email protected]');
console.log('Entangled email: ' + b.get('email'));

.entangle() also works when called with a list of properties.

a.entangle(b, ['firstname', 'lastname']);

If called with a map of property names, then property 'X' on one atom can be entangled with property 'Y' on the other atom.

a.entangle(b, { firstname: 'first', lastname: 'last' });
a.set('firstname', 'Joe');
console.log('Welcome, ' + b.get('first'));

Note that entangled properties are not actually synchronized until the first change after entanglement.

Asynchronous Queueing

String together a series of asynchronous functions using the .chain() method.

a.chain(
	function (nextLink) {
		callAjaxMethod('callThisFirst', function (firstResult) {
			nextLink(firstResult);
		});
	},
	function (nextLink, firstResult) {
		callAjaxMethod('callThisSecond', function (secondResult) {
			nextLink(secondResult);
		});
	}
);

Cleanup

Release references to all data and callback functions with the .destroy() method.

a.destroy();