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

@clevercloud/warp10-cubism

v5.1.0

Published

Warp10 Cubism =============

Readme

Warp10 Cubism

Warp10 Cubism is a Warp10 graphical plugin to display data using Cubism

While it's not yet quite ready and mostly Clever Cloud oriented for now, it should be usuable if you want to display some Geo time series coming from Warp10.

This plugin uses the Mobius interface of Warp10 through Websocket to live stream the points.

This module relies heavly on Bacon.js to receive from / send data to the module.

Build and use

You can build this module (LESS and JST) by using grunt.

You can then require this module using webpack or any other tool.

API

The module is a function accepting an object:

  • $container: A JQuery object where the module will live with a <div class="metrics-overview"></div> in it
  • s_token: A Bacon.js property with a read token for Warp10
  • s_instances: A Bacon.js property with an array of Clever Cloud instances
  • s_requestUnload: A Bacon.js stream which is used to stop actions when an event is received (used with .takeUntil())
  • app: A Clever Cloud application object
  • owner: A Clever Cloud owner object (user or organization) which own the application
  • b_inputEvents: A Bacon.js bus used to send events to the module
  • b_outputEvents: A Bacon.js bus used to receive events from the module
  • Translations: A function (key: string) -> string that returns the translation corresponding to the given key

Events

It's an object of the form: Object<T>{type: string, data: T} where T can be anything (only used in CHANGE_VIEW for now)

Events to send to the module

  • PAGE_READY: To send when the page is ready, no data (mandatory)
  • PAGE_RESIZE_START: To send when the page is resizing. It will show a loader (optional)
  • PAGE_RESIZE_END: To send when the page resizing is done. It will redraw cubism and fetch missing points (optional)

Events received from the module

  • CHANGE_VIEW: This event is most likely not used unless you add other views (like it's done in the Clever Cloud console). You will receive the new view to show, which may be GLOBAL (string) here. When received, you need to re-instanciate the $Metrics module.

Example

const state = $Metrics({...});
$Metrics.start(state);