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

hummingbird-api

v1.0.9

Published

A NodeJS wrapper for the Hummingbird API V1 and V2.

Downloads

22

Readme

Hummingbird API

Build Status Dependency Status devDependency Status

A NodeJS wrapper for the Hummingbird API V1 and V2. This wrapper needs an registered Hummingbird application key, you can register your application here.

Usage

Setup

npm install --save hummingbird-api

Initialize

const HummingbirdAPI = require("hummingbird-api");

// Depending on the version an api_key is needed.
// The default version is version 1.
let hummingbirdAPI = new KAT({[api_key, version, debug]});

// Destructuring the possible object from the API wrapper.
const { Anime, Libraries, User } = hummingbirdAPI;

Anime

// Get an anime by slug (can also be the id Hummingbird uses).
Anime.getAnime("log-horizon")
  .then(res => console.log(res))
  .catch(err => console.error(err));

// Get an anime by the MyAnimeList id.
Anime.getAnimeByMal("17265")
  .then(res => console.log(res))
  .catch(err => console.error(err));

/* Search is not supported in V2 (yet) */
// Anime.search("log-horizon")
//   .then(value => console.log(value))
//   .catch(err => console.error(err));

Libraries

// Get the library of someone by its username.
Libraries.getLibrary("chrisalderson")
  .then(res => console.log(res))
  .catch(err => console.error(err));

// All the possible optional options to add or update a library
const parameters = {
  status: "currently-watching",
  privacy: "public",
  rating: "4.5",
  sane_rating_update: "4.5",
  rewatching: false,
  rewatched_times: 0,
  notes: "Pretty awesome",
  episodes_watched: 3,
  increment_episodes: false
};

// To add, update or remove a library you need to be authenticated.
// This is also why we destructured the User object from the API wrapper.
User.authenticate({username: "chrisalderson", email: "[email protected]", password: "supersecret"})
  .then(auth_token => {

    Libraries.addLibrary({ id: "11437", auth_token, parameters })
      .then(res => console.log(res))
      .catch(err => console.error(err));

    Libraries.updateLibrary({ id: "11437", auth_token, parameters })
      .then(res => console.log(res))
      .catch(err => console.error(err));

    Libraries.removeLibrary(1234, auth_token)
      .then(res => console.log(res))
      .catch(err => console.error(err));

  }).catch(err => console.error(err));

User

// Authenticate a user. You can use username or email you don't have to fill in both.
// Either of those two are sufficient.
User.authenticate({username: "chrisalderson", email: "[email protected]", password: "supersecret"})
  .then(res => console.log(res))
  .catch(err => console.error(err));

// Get a user's info by its username.
User.getUser("chrisalderson")
  .then(res => console.log(res))
  .catch(err => console.error(err));

// Get a user's feed by its username.
User.getUserFeed("chrisalderson")
  .then(res => console.log(res))
  .catch(err => console.error(err));

// Get a user's favorites by its username.
User.getUserFavorites("chrisalderson")
  .then(res => console.log(res))
  .catch(err => console.error(err));

License

MIT License

Copyright (c) 2016 - hummingbird-api - Released under the MIT license.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.