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

hmpo-model

v5.0.0

Published

Simple model for interacting with http/rest apis.

Downloads

4,400

Readme

hmpo-model

  • localModel - Simple model for data persistance
  • remoteModel - Simple model for interacting with http/rest apis.

Upgrading

The deprecated request library has been replaced with got. The API is very similar, and some args are translated, like auth, and proxy. The new got library doesn't automativally use the proxy environment variables so you would need to use something like global-agent in your app if you need to specify proxies by environment arguments.

The request method no longer takes a body. This should be inserted as json, body, or form into the requestConfig method.

Local Model Usage

get(name)

  • gets a model property via a key

set(name, value) or set({ name: value })

  • sets a property on the model to a value and dispatches events

unset(name)

  • unsets a property

reset([options])

  • resets a model
  • suppresses change event notifications if options.silent is set

increment(name)

  • Increments a property

toJSON()

  • returns a JSON representation of the data in the model

Remote Model Usage

Normally this would be used as an abstract class and extended with your own implementation.

Implementations would normally define at least a url():url method to define the target of API calls.

Example implimentation:

class MyModel extends HmpoModel {
    url() {
        return super.url('https://my.example.com/url')
    }

    auth() {
        return super.auth('username:password');
    }

    requestConfig(config) {
        config.proxy = 'http://proxy.example.com:3128'
        return super.requestConfig(config);
    }

    // add data to JSON post body
    prepare(callback) {
        super.prepare((err, data) => {
            if (err) return callback(err);
            data.foo = 'bar';
            callback(null, data);
        });
    }

    // transform returned data
    parse(data) {
        data.additionalItem = true;
        return super.parse(data);
    }
}

const model = new MyModel();
model.set('boo', 'baz');
model.save((err, data, responseTime) => {
    if (err) return console.error(err);
    console.log(data);
});

There are three methods for API interaction corresponding to GET, POST, and DELETE http methods:

fetch([args, ][callback])

fetch performs a GET request on the url

const model = new Model();
model.fetch((err, data, responseTime) => {
    console.log(data);
});

Request

  • Request args for the got library, can be set by overriding the requestConfig({}):{} method.

  • The url can be configured either by setting a default in the model options or requestConfig() data, or by overriding the url(default, args):url method.

  • proxy, timeout, and basic auth can be set in the same way, using model options, setting in requestConfig(), or by overriding a method.

  • Specifying a proxy will set up a proxy tunneling agent for the request.

  • Specifying a numeric timeout will set the same timeout for all got timeout values.

  • Basic auth can be a colon separated string, or a {username, password} or {user, pass} object.

Response

  • The returned body will be expected to be in JSON format.
  • If statusCode < 400 the JSON response will be set to the model. This behaviour can be changed by overriding the parse(data):data method.
  • If statusCode >= 400 the data will be passed to the parseError(statusCode, data):error method, and the fetch callback will be called with the returned error.
  • If response statuses need to be treated differently than the above, the parseResponse(statusCode, data, cb) method can be overridden.
  • If the response body is not going to be JSON, the handleResponse(response, cb) method can be overridden.

save([args, ][callback])

save performs a POST request on the url

const model = new Model();
model.set({
    property: 'properties are sent as JSON request body by default'
});
model.save((err, data, responseTime) => {
    console.log(data);
});
  • By default the post body will be a JSON encoded object containing all attributes set to the model using, extracted using model.toJSON(). This behaviour can be changed by overriding the prepare(callback(err, data)) method.
  • The response and body will be treated the same way as the fetch request above.

delete([args, ][callback])

delete performs a DELETE request on the url

const model = new Model();
model.delete((err, data, responseTime) => {
    console.log(data);
});

Events

API requests will emit events as part of their lifecycle.

sync is emitted when an API request is sent

model.on('sync', function (settings) { });

success is emitted when an API request successfully completes

model.on('success', function (data, settings, statusCode, responseTime) { });

fail is emitted when an API request fails

model.on('fail', function (err, data, settings, statusCode, responseTime) { });

Hooks

API requests will fire hooks specified in model options as part of their lifecycle.

new Model(null, options);

sync hook is fired when an API request is sent

options.hooks.sync({ settings });

success hook is fired when an API request successfully completes

options.hooks.success({ data, settings, statusCode, responseTime });

fail hook is fired when an API request fails

options.hooks.fail({ err, data, settings, statusCode, responseTime });