1.0.4 • Published 8 years ago

addressr v1.0.4

Weekly downloads
4
License
ISC
Repository
github
Last release
8 years ago

Addressr Node.js Library

The Addressr Node library provides access to the Addressr API.

Documentation

See instructions on using the API

Installation

Install the package with:

npm install addressr --save

Usage

Configure the package with your key and secret.

var options = {
    key: 'key...',
    secret: 'secret...'
};
const addressr = require('addressr')(options);

Resolve an address with a promise:

addressr.resolveAddress('virtual-address')
.then(function(address) {
    address; // the address object
});

Resolve an address with a callback:

addressr.resolveAddress('virtual-address', function(address) {
    address; // the address object
});
1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago