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

@earthtone/prisoner-ipsum

v2.0.1

Published

Lorem Ipsum Generator with Prisoner Quotes

Downloads

5

Readme

Prison Ipsum

logo

Lorem Ipsum generator for quotes from The Prisoner

badge

Version 2.0.0 sees a dramatic reduction in this package's scope. CLI functionality is no longer supported, and the ipsum generator outputs "paragraphs" of text as an Array of Strings. This approach was taken to reduce the output package size, and to reduce the complexity of maintaining three different content types (i.e. HTML, raw text, and JSON). Packaging output data inside a JSON object, or outputing it to the console is trivial enough. The consumer now has full flexibility, and responsiblity, for rendering ipsum output in whatever way befits the use.

Output of a title string is still supported, and functions as previously.

Installation

npm install @earthtone/prisoner-ipsum

Basic Usage

import html from 'nanohtml'
import { title, ipsum } from '@earthtone/prisoner-ipsum'

const titleText = title() // "Hammer into Anvil"

const textContent = ipsum()

// Output text as Array
console.log(textContent)

// [
//   "I am not a number. I am a person. Why? Running out of time? All right, say you're a poet and you were composing, and you failed to hear Number Ten's greeting. To you and to me, news is like air. We breathe it deeply. We draw it from far and wide. Go to the Town Hall. The Citizens' Council promises help and advice for everyone. Which is? [The door closes behind Number Six as he leaves] Oh? Smile Rat.",
//   "Why? Running out of time? To you and to me, news is like air. We breathe it deeply. We draw it from far and wide. Which is? Oh? Rat. A star. You must be anvil or hammer. [about Number Six] Interesting fellow. Well done. I have several. No. Nor of being reduced.",
//   "All right, say you're a poet and you were composing, and you failed to hear Number Ten's greeting. Which is? Smile A star. And before I hand it over to my successor... Well done. I have several. Naturally. Humor is the very essence of a democratic society. [about Number Six] That one wouldn't drop his guard with his own grandmother! Yes, sir. I'm on my side."
// ]
//

// Output text as HTML Element
const component = () =>
  html`<article>
    <h1>${titleText}</h1>
    ${
      textContent.map(str =>
        html`<p>${str}</p>`
    )}
  </article>`


document.body.querySelector('#app').appendChild(component)