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

tribune-bing-geocoder

v0.2.0

Published

JavaScript wrapper to Bing's geocoding API that supports alternate endpoint URLs

Downloads

3

Readme

tribune-bing-geocoder

A JavaScript wrapper for the Bing Locations API.

There are other packages that do this same thing such as simple-bing-geocoder or bing-geocoder. They are fine. I wrote this because they lacked an important feature for us: the ability to override the URL of the API endpoint. Bing's API has the frustrating requirement of sending the API key as a query string parameter. At the Chicago Tribune, we make a lot of single-page, static apps. If we want to add geocoding to these apps, we'd have to leak our API key to the client. We get around this by proxying requests through our own endpoint, implemented with an Amazon Web Services Lambda function.

Features

  • Specify alternate endpoint URL
  • Written in ES6

Installation

The best way to install this is using npm:

npm install tribune-bing-geocoder

If you want to use this in your browser, without using Browserify, you can copy the tribune-bing-geocoder.js file to your webserver. The geocoder class is available as a global named BingGeocoder.

Usage

Basic usage:

var BingGeocoder = require('tribune-bing-geocoder').BingGeocoder;

var geocoder = new BingGeocoder(process.env.BING_API_KEY);
geocoder.geocode("435 N. Michigan Ave, Chicago", function(err, data) {
 console.log(data.resourceSets[0].resources[0].point.coordinates);
});

If you have a proxy to the Bing API (and one that doesn't require an API key), you can override the URL:

var BingGeocoder = require('tribune-bing-geocoder');

var geocoder = new BingGeocoder(undefined, 'https://xxxxxxxxxx.execute-api.us-east-1.amazonaws.com/production/locations');

You can specify additional query parameters to the API as a third argument to the geocode() method:

var BingGeocoder = require('tribune-bing-geocoder').BingGeocoder;

var geocoder = new BingGeocoder(process.env.BING_API_KEY);
geocoder.geocode("435 N. Michigan Ave, Chicago", function(err, data) {
 console.log(data.resourceSets[0].resources[0].point.coordinates);
 }, {
   // Specifying location of Chicago to allow users to not have to type city name
   userLocation: "41.8337329,-87.7321555"
 });

Building

If you'd like to build this project for development purposes, run:

npm run build

This will translate the source code from ES6 syntax and make a UMD version.

Author

Geoff Hing [email protected] for the Chicago Tribune DataViz team.

License

MIT