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

nerdata

v1.2.1

Published

testdata for the fantasy/scifi enthusiast

Downloads

57

Readme

nerdata

Testdata from scifi and fantasy, because y'all need it.

Now with zero dependencies!

DATA

Supported universes:

  • Daevabad
  • Dune
  • Jojo's Bizarre Adventure
  • Lord of the Rings
  • Naruto
  • Rick and Morty
  • Star Wars

Planned universes:

  • American Gods
  • Avatar: The Last Airbender
  • Buffy the Vampire Slayer
  • DC Comics
  • Discworld
  • Doctor Who
  • The Expanse
  • Firefly
  • Foundation
  • Greek Mythology
  • Gurren Lagann
  • Harry Potter
  • Marvel Comics
  • Mass Effect
  • One Piece
  • A Song of Ice and Fire
  • Umbrella Academy
  • The Witcher

INITIALIZATION

const { Nerdata } = require("nerdata");

A new instance can be specified with all universes:

const nerdata = new Nerdata();

A custom number generator can be provided to be used instead of Math.random():

const nerdata = new Nerdata({
  randomFn: someRandomFunction,
});

There are two ways to select which universes you want:

// Inclusive
const nerdata = new Nerdata({
  include: ["dune", "star-wars"],
});
// Exclusive
const nerdata = new Nerdata({
  exclude: ["rick-and-morty"],
});

USAGE

Call signature: nerdata.namespace.method([universes], [options])

Each method will return a random item from all loaded universes if no arguments are given. Universes can be filtered by providing a string or array of strings. Requesting a universe that does not exist or has not been loaded will throw an error.

Options may be provided for certain methods as an object.

nerdata.name.full(); // full name from any loaded universe
nerdata.name.full("star-wars"); // full name from Star Wars
nerdata.name.full(["dune", "star-wars"]); // full name from Dune or Star Wars
nerdata.name.full("fifty-shades-of-grey"); // ERROR: unsupported or unloaded

API

All return values are strings.

| method | description | examples | | ------------------- | ----------------------------------- | --------------------------------------------- | | name.first | first name | "Han", "Aragorn", "Paul" | | name.last | last name | "Solo", "Sanchez", "Atreides" | | name.full | full name | "Han Solo", "Rick Sanchez", "Frodo Baggins" | | place.any | name of location (any type) | "Ahto City", "Gazorpazorp", "Caladan" | | place.city | name of city | "Ahto City", "Seattle", "Bandalong" | | place.realm | name of realm | "Tattooine", "Gazorpazorp", "Gondor" | | item.any | name of item (any type) | "light saber", "space cruiser", "suspensor" | | item.tool | name of tool | "neural band", "plumbus", "suspensor" | | item.weapon | name of weapon | "Narsil", "freeze ray", "crysknife" | | item.vehicle | name of vehicle | "X-Wing", "space cruiser", "ornithopter" | | species.any | name of species (any type) | "jawa", "splorpian", "sandworm" | | species.sentient | name of sentient species | "jawa", "human", "tleilaxu" | | species.nonsentient | name of nonsentient species | "bantha", "fleeb", "sandworm" | | quote.sentence | full sentence with punctuation | "There is no try: only do." | | quote.paragraph | multiple sentences with punctuation | "There is no try: only do. You pass butter. " |

OPTIONS

quote.sentence: opts.citation

  • citation: if true, appends speaker to quote
    • true: "It's a trap!" - Admiral Ackbar
    • false: It's a trap!
nerdata.quote.sentence("rick-and-morty", { citation: true }); // '"I made the bomb, Morty." - Rick Sanchez'
nerdata.quote.sentence("rick-and-morty", { citation: false }); // 'I made the bomb, Morty.'
nerdata.quote.sentence("rick-and-morty"); // 'I made the bomb, Morty.'

quote.paragraph: opts.sentences

  • sentences: number of sentences in paragraph
    • default: 3
nerdata.quote.paragraph("rick-and-morty", { sentences: 1 }); // 'I made the bomb, Morty.'
nerdata.quote.paragraph("rick-and-morty"); // 'I made the bomb, Morty. You pass butter. I mean, why would a Pop-Tart want to live inside a toaster, Rick?'

BUILDING

To build, run npm run compile. This first compiles the Typescript code and then auto-generates Flow definitions. Some magic is done here to add // @flow, and the generator can make mistakes, so be sure to run npm run check-flow to be sure everything worked.

CONTRIBUTING

I don't have a system in place yet for managing pull requests -- shoot me a message at [email protected], and let's talk!