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 🙏

© 2026 – Pkg Stats / Ryan Hefner

ebird-js

v0.0.10

Published

JS library to interact with the ebird api

Readme

ebird-js

JS wrapper to the ebird API.

Build Status

ebird 1.1 docs

ebird-js is just a convenience library for interacting with the ebird 1.1 api.

How to use

npm install --save ebird-js
var ebird = require('ebird-js');

var params = {
    lng: '-76.51',
    lat: '42.46',
};

ebird.obs.geo.recent(params).then((data) => {
    // An array of observations
    console.log(data);
}).catch((error) => {
    console.log(error);
})

Default Params

fmt defaults to json.

All others see ebird 1.1 docs

Endpoints

data

This path contains data services.

data.obs.geo.recent

returns recent nearby observations

    ebird.data.obs.geo.recent(params)

data.obs.geo_spp.recent

returns recent nearby observations of a species

    ebird.data.obs.geo_spp.recent(params)

data.obs.hotspot.recent

returns recent observations at hotspots

    ebird.data.obs.hotspot.recent(params)

data.obs.hotspot_spp.recent

returns recent observations of a species at hotspots

    ebird.data.obs.hotspot_spp.recent(params)

data.obs.loc.recent

returns recent observations at locations

    ebird.data.obs.loc.recent(params)

data.obs.loc_spp.recent

returns recent observations of a species at locations

    ebird.data.obs.loc_spp.recent(params)

data.obs.region.recent

returns recent observations in a region

    ebird.data.obs.region.recent(params)

data.obs.region_spp.recent

returns recent observations of a species in a region

    ebird.data.obs.region_spp.recent(params)

data.notable.geo.recent

returns recent nearby notable observations

    ebird.data.notable.geo.recent(params)

data.notable.hotspot.recent

returns recent notable observations at hotspots

    ebird.data.notable.hotspot.recent(params)

data.notable.loc.recent

returns recent notable observations at locations

    ebird.data.notable.loc.recent(params)

data.notable.region.recent

returns recent notable observations in a region

    ebird.data.notable.region.recent(params)

data.nearest.geo_spp.recent

returns nearest locations with observations of a species

    ebird.data.nearest.geo_spp.recent(params)

products

This path contains products consisting of aggregated raw data.

product.obs.hotspot.recent

This service provides a summary of recent sightings for birding hotspots.

    ebird.data.nearest.geo_spp.recent(params)

ref

This path contains supporting lookup services for the /data and /product services

ref.taxa

returns species in the ebird taxonomy

    ebird.ref.taxa(params)

ref.hotspot.region

provides a list of eBird hotspots for a given region, optionally filtered to those with recent data

    ebird.ref.hotspot.region(params)

ref.hotspot.geo

provides a list of nearby eBird hotspots, optionally filtered to those with recent data

    ebird.ref.hotspot.geo(params)

ref.location

returns location-based look-up data

    ebird.ref.location(params)

ref.region

Undocumented ebird api.

params:
    q: String to search on.  Required

Example Response:
    [
        {
            name: "United States (US)",
            code: "US"
        },
        ...
    ]

returns location name and code.

    ebird.ref.region(params)