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

skycap-client

v0.0.1

Published

server side library for skycap tracking server

Readme

#Skycap Client

A simple client to send requests to a skycap server. Meant to for tracking stuff on the server side and sending into skydb. This is pretty much taken byte for byte from skycap's client side js with minor modifications for making it node-y.

Very much WIP and lots to fix/finalise/do, namely:

  • add cli/repl
  • write tests
  • tidy up client

Known to work with skycap/skydb v2.3

##Testing

None yet, but Works On My Machine verified

##Stability index

Stability: 1 Experimental

The API and code are likely to change/evolve as the skydb and skycap themselves change.

##Installation

npm install skycap-client

##API

Pretty much like the original skycap client, see the examples below.

###skycap.createClient(options)

Returns a new instance of a client, currently options has to be an object and only notices one key, host, whose value should be the URL of the skycap server to send the tracking data to.

###client.identify(identifier, [data]) This method identifies a user and associates user-level state with them. For example, you may want to identify the user by an email address or id from your datastore.

The data object represents state about the user itself. This could be their name or whether they are a paid user. User-level data is data that changes over time and exists outside the context of an action the user is performing.

###client.track(action, [data], [callback]) This method tracks a specific action that has occurred. This could be the web page that the user is on or it could be a link that is clicked.

The first argument is the name of the action. The second argument is action-level data. Action-level data is any data that exists only within the context of this specific action. For example, a purchase action could have purchase_amount. An optional callback function may be supplied which gets 1 arguments, err, in the event of their being an error making the tracking call

Examples


var skycap = require(skycap-client);

var options = {host: "http://skycap.example.com"}
var client = skycap.createClient(options);

client.identify('user-101', {entryPoint:'web', accId:'8172635'});

client.track('did stuff', { thing: 'some-value' }, [callback]);

client.track('purchase', {amount: 1256}, [callback]);

client.track('beep-boop', { volume: 11}, [callback]);