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

itc-api

v0.1.5

Published

Javascript API for ITC database

Downloads

2

Readme

itc-api

A JavaScript client API for the ITC model Server. Works in Node.js and modern browsers.

Installation

npm install itc-api --save

Usage

Creating a new client

// Assuming Node.js or Browser environment with Browserify:
var ITC = require('itc-api');

// Will open a new connection to ws://inthecloud.today:4000 with default options.
var itc = new ITC();

This is shorthand for:-

var itc = new ITC('inthecloud.today', 4000);

To get the open connection or force a re-connection:-

var itc = new ITC();
var connection = itc.connect('inthecloud.today', 4000);

Using the API to Query the ITC Database

The API methods accept a "parameters" map of key/value pairs. The user_id parameter should be passed in to execute the method under the context of the user passed in otherwise it will be run under the context of the "guest" user. The user_id is obtained from the User object returned from the authenticate method.

The client supports two modes:-

  • asynchronous
  • synchronous

Asynchronous Operations

The general format of the asynchronous methods is:-

itc.asyncfn(parameters, callback);

Parameters are key/value pairs. The last parameter of the asynchronous method accept a callback of the form:-

function(error, results)

For example:-

itc.getDomain({ domain_url: 'inthecloud.today'}, function(error, results) {
    // ....process error and results
});

Methods are executed against a domain under a user context, which is 'guest' by default. The authenticate method is used to change the user's context. For example:-

itc.authenticate({ username: 'someuser', password: 'somepassword', domain_url: 'mydomain.com' }, function(error, results) {
    if (error)
        throw error;
    else if (results.length) {
        user_id = results[0].id;    // to be used in subsequent requests
        console.log('Results: ', results);
    }
});

The /examples directory contains examples of using ITC asynchronous functions.

Synchronous Operations

The asynchronous operations have synchronous equivalents, which contain a "Sync" suffix. The have the same signature except the 'callback' parameter is ommitted and the result is returned by the function. If the method fails an 'error' is thrown.

For example:-

try {
    var user = itc.authenticate({ username: 'someuser', password: 'somepassword', domain_url: 'mydomain.com' });
    var domain = itc.getDomain({ user_id: user.id, domain_url: 'inthecloud.today'});

} finally {

}

The /examples directory contains examples of using ITC synchronous functions.