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

hippodrome

v0.2.9

Published

Your data, like your chariots, go around and around in one direction in this, a Flux implementation that only Ben Hur could love.

Downloads

33

Readme

Hippodrome

At last the herald with loud blare of trumpet calls forth the impatient teams and launches the fleet chariots into the field. The swoop of forked lightning, the arrow sped by Scythian string, the trail of the swiftly-falling star, the leaden hurricane of bullets whirled from Balearic slings has never so rapidly split the airy paths of the sky.… Thus they go once round, then a second time; thus goes the third lap, thus the fourth…

Sidonius

Hippodrome is an implementation of Facebook's Flux architecture. It adds some more structure (especially to Stores) to the ideas beyond what Facebook's Flux has and includes Deferred Tasks, objects that can respond to Actions (like Stores) but instead of exposing data to views, do additional asynchronous work like making a network request and possibly dispatching more actions based on the response.

For a more in-depth explanation, read this.

Installation

Rails

Add this line to your application's Gemfile:

gem 'hippodrome'

And then execute:

$ bundle

Or install it yourself as:

$ gem install hippodrome

Node

npm install --save hippodrome

Bower

bower install --save hippodrome

Usage

Rails

In your javascript manifest file:

//= require hippodrome

Node

Hippodrome = require('hippodrome')

Bower

Hippodrome will either set a top-level window.Hippodrome object or export a node-style Hippodrome = require('hippodrome') module, depending on what it detects in your environment.

Contributing

The actual project code is in src/. Running gulp build will compile the coffeescript files into dist/. gulp test runs a jasmine test suite on the code in dist. gulp watch will watch src for changes and run the tests on each change.