angular-ziptastic

1.2.0 • Public • Published

angular-ziptastic Build Status

Ziptastic ZIP -> City/State lookups for Angular

Installation

# use npm 
$ npm install angular-ziptastic
# or bower 
$ bower install angular-ziptastic

Setup

Include 'ziptastic' in your module's dependencies:

// node module exports the string 'ziptastic' for convenience
angular.module('myApp', [
  require('angular-ziptastic')
]);
// otherwise, include the code first then the module name
angular.module('myApp', [
  'ziptastic'
]);

API

ziptasticProvider

base(baseUrl) -> undefined

Sets the default base URL for requests. Defaults to 'https://zip.getziptastic.com/v2'.

country(country) -> undefined

Set the default country to use in requests. Defaults to 'US'.

$http(config) -> undefined

Set default config for $http. Defaults to undefined. config is an object that will be passed directly to $http and can be used to set config options like timeout and cache

ziptastic

lookup(code|options) -> promise

Performs a Ziptastic lookup, either with a code string or an options object that specifies:

  • code (string): The postal code
  • country (string): Overrides the default country
  • base (string): Overrides the default base
  • $http (object): Overrides the default $http configuration

Returns a $q promise for the Ziptastic response.

ziptastic.lookup('10009')
  .then(function (data) {
    expect(data).to.deep.equal({
      city: 'New York City',
      country: 'US',
      county: 'New York',
      state: 'New York',
      state_short: 'NY',
      postal_code: '10009'
    });
  })
  .catch(function (err) {
    console.err('Error in lookup', err);
  });

/angular-ziptastic/

    Package Sidebar

    Install

    npm i angular-ziptastic

    Weekly Downloads

    33

    Version

    1.2.0

    License

    MIT

    Last publish

    Collaborators

    • bendrucker