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

isg-types

v0.0.2

Published

Free typification built on isg-events module.

Downloads

35

Readme

[email protected]

Free typification built on isg-events module.

Install

  • NPM npm install isg-types
  • GIT git clone https://github.com/isglazunov/types.git
  • download from releases

Require

Depends on the modules:

Node.js

var isgEvents = require('isg-events')
var isgTypes = require('isg-types');
var Types = isgTypes(require('underscore'), require('async'), isgEvents(require('underscore'), require('async')));

Browser

<script src="isg-events.js"></script>
<script src="isg-types.js"></script>
var Events = new isgEvents(_, async);
var Types = new isgTypes(_, async, Events);

define

define(['./isg-events.js', './isg-types.js'], function(isgEvents, isgTypes){
    var Events = new isgEvents(_, async);
    var Types = new isgTypes(_, async, Events);
});

Usage

Server typing

Container type described and methods for their descriptions.

var server = new Types.Server;

or

var MyServer = function(){};
MyServer.prototype = new Types.Server;
var server = new MyServer;

server.describe(name, description[, options]);

Description of the types of events are stored as isg-events variable in server._isgTypesEvents. The options are passed to the method as events.on.

server.describe('user', function(next, client, exports){
    exports.isAdmin = function(){
        return _.indexOf(client.groups, 'admin') !== -1
    };
});

Client typing

The object client will have a functional initialized types.

var client = new Types.Client;

or

var MyClient = function(){};
MyClient.prototype = new Types.Client;
var client = new MyClient;

client.initialize(name[, callback]);

Starts the initialization of all types that are contained in the array client._isgTypes. In other words, starts each by name as the event type in the object server._isgTypesEvents. The argument callback will be executed after the initialization of all types.

client.initialize('user', function(){
    console.log('trigger');
});

client.as(name);

Gets exports specified type. Allows the use of a functional type of an object of client.

client.groups = ['admin']
client.as('user').isAdming() // => true;

Versions

0.0.1

The basic functionality.