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

gideon-api

v1.2.2

Published

Node API Wrapper for Gideon API™

Readme

gideon-api

Node API Wrapper for Gideon API™

Simple API wrapper for the Gideon API™ powering the Arrowverse Discord Bot

  • Easy to use
  • Full API coverage
  • Also wraps the arrowverse.info API

Installing

npm install gideon-api

Usage

//CJS:
const gideonapi = require('gideon-api');
//ES6:
import gideonapi from 'gideon-api';

//fetch a random Arrowverse quote:
const quote = await gideonapi.quote();
console.log(quote);

/* Example response
  {
    "quote": "You saved the world, and then I saved you, with your pod. You're not the only bad-ass in the family.",
    "quotee": "Alexandra Danvers (Arrowverse: Earth-38)",
    "image": "https://static.wikia.nocookie.net/marvel_dc/images/5/5f/Alexandra_Danvers_Arrow_Earth-38_002.jpg/revision/latest/scale-to-width-down/350?cb=20190804030154"
  },
*/

//fetch metahuman abilities:
const abilities = await gideonapi.abilities();
//optional parameters: speedsters / vibers / kryptonians
console.log(abilities);

/* Example response
vibers: {
    title1: "Meta-human physiology",
    ability1: "Vibers possess altered DNA and physiology to access dimensional energy.",
    title2: "Dimensional energy manipulation",
    ability2: "Vibers have a psychic link to the natural energies of reality, allowing them to connect with various vibrations of the multiverse and manipulate them for various effects.",
    title3: "Dimensional awareness",
    ability3: "Known as \"vibing\", vibers can perceive various events throughout time and space, letting them see into the past and future as well as parallel dimensions, even into the very Speed Force itself.",
    title4: "Interdimensional travel",
    ability4: "With their natural connection to the multiverse, vibers can open portals to other dimensions. Being a noticeably more advanced ability, they are shown to need focus and a proper awareness of their intended target.",
    title5: "Vibrational blasts",
    ability5: "Vibers are able to generate powerful blue or red concussive blasts of vibrations from their hands capable of propelling full-grown humans through the air.",
    title6: "Mental connection",
    ability6: "Vibers are connected by their powers and are able to observe each other if they\'re skilled enough."
}
*/

//fetch soundtrack album urls:
const soundtracks = await gideonapi.soundtracks();
//optional parameters: flash / arrow / legends / supergirl / crossovers
console.log(soundtracks);

/* Example response
flash: {
    season1: "https://open.spotify.com/album/0xiJwfDcZRQ77bsbjS9TF5",
    season2: "https://open.spotify.com/album/2EE7W74Rk1LDHzbYC9js2Z",
    season3: "https://open.spotify.com/album/0DCUAyJVmG1fNxkBaZqFLt",
    season4: "https://open.spotify.com/album/12WS02J0JBAVeEGj6aJ7R8",
}
*/

//fetch list of speedsters:
const speedsters = await gideonapi.speedsters();
console.log(speedsters);

/* Example response
{
    speedster: "XS (Nora West-Allen)",
    lightningColorsElectrokinesis: "Purple & Yellow (Speed Force) / Purple & Red (Negative Speed Force)",
    universe: "Earth-1",
    actoractress: "Jessica Parker Kennedy",
    firstAppearanceAsSpeedster: "The Flash 4x20 \"Therefore She Is\""
}
*/

//fetch a timeline change:
const timeline = await gideonapi.timeline();
console.log(timeline);

/* Example response
"Your interference with the timeline has caused World Peace, good job!"
*/

//fetch from arrowverse.info:
const episodes = await gideonapi.avi();
console.log(episodes);

/* Example response
{
    "air_date": "February 12, 2019",
    "episode_id": "S05E14",
    "episode_name": "Cause and XS",
    "row_number": 455,
    "series": "The Flash"
}
*/

License

MIT