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

buzzphrase

v3.1.3

Published

Get a Buzzword Phrase. Because sometimes you need enhanced didactic mobility, liberating syndicated transitional projections

Downloads

166

Readme

buzzphrase

Get a Buzzword Phrase

Since I like to synergize backward overflow for upward mobility (thank you 30 Rock) as much as the next person, I figured this could make a fun if not at all useful node module. This is also a module I use for educational purposes and the occasional private git commit message:

# ¯\_(ツ)_/¯ don't do this to people you work with
git commit -m "$(buzzphrase 2)"

As of 2.0.0, this module splits up the word groups into verb + adjective + noun and allows combining multiple phrases with a continuation phrase. It also now has logic to make each word mostly unique in the overall phrase. See below when called with 15 joined phrases.

Usage

As a Global Install

Run on the command line, you can specify the number of joining iterations (default 1) and a format (default '{a} {v} {N}'):

  buzzphrase {iterations} {format}
⇒ npm install -g buzzphrase
⇒ buzzphrase
# same as `buzzphrase 1 '{a} {v} {N}'`

synthesized transitional alignments

⇒ buzzphrase 1 '{v} {a} {n}'

lobotomized bleeding-edge community

The format method is also useful for testing new word additions with random counterparts:

⇒ buzzphrase 1 '{v} {a} consumption'

repurposed organizational consumption

⇒ buzzphrase 2

intermediated 24/7 convergence, leveraging distributed anti-fragile paradigm-shifts

⇒ buzzphrase 3

enhanced incremental initiatives independent of reinvigorated extensible channels, which revolutionizes mesh didactic partnerships

⇒ buzzphrase 15

concealed compatible paradigm-shifts, in contrast to emitted unique convergence, in preparation for serialized innovative abstractions, which revolutionizes e-enabled acoustic singularity, anticipating filtered didactic policies, independent of printed-out best-of-breed hardware, liberating leveraged reciprocal management, enhanced by branded digital pooling on behalf of virtualized zero-downtime #DevOps, which foreshadows upheld extravehicular normalization for facilitated polymorphic markets, which will enable printed multilayered communities, protecting against scanned organizational clusters, forging offloaded 24/7 virtualization, pioneering clicked asynchronous partnerships

As a module

import buzzphrase from "buzzphrase";
// OR
//const buzzphrase = require("buzzphrase");

// get a phrase as a building block
console.log("we are building " + buzzphrase.get());
// -> we are building marshalled retroactive applications

// custom phrase
console.log(
    buzzphrase.get({
        format: "{i} {a} {n} {f}",
    })
);
// -> embrace digital #DevOps for dummies

// log a joined series of 2 phrases to the console
buzzphrase.log({ iterations: 2 });
// -> initialized cognitive paradigm-shifts, in preparation for iterated ubiquitous architectures

Format Recommendations

'{a} {v} {N}' - default

retrospective digitized relationships
adaptive accelerated markets
shallow merged markets

'{a} {v} {n}'

unique routed projection
sustainable filed touchpoint
quantum initialized programming

'{V} {a} {n} {f}'

incentivizing B2B value-add as code
popping-up frictionless partnership at scale
evolving third-generation projection for people

'{i} {v} {a} {N}'

deliver merged immersive channels
syndicate engineered all-purpose interfaces
grow architected adversarial mobility

API

  • get(config): Get a phrase, with config options

    • default config:
    {
      format: '{a} {v} {N}',
      iterations: 1
    }
    • format: This is a string template that will replace the following with random words
      • {a} adjective
      • {c} continuation
      • {f} final (e.g. "for dummies")
      • {i} imperative verb
      • {N} plural noun
      • {n} singular noun
      • {v} past-tense verb (e.g. initialized)
      • {V} present participle verb (e.g. clustering)
    • iterations: specify how many times the format should be joined together with continuations ('{c}'). For example, specifying get({iterations: 2}) will conjoin the default format into {a} {v} {N} {c} {a} {v} {N}
  • getImperative(iterations)

    • DEPRECATED: instead use
    buzzphrase.get({
        format: "{i} {a} {v} {N}",
        iterations: iterations,
    });
  • getPhrase(iterations)

    • DEPRECATED: instead use
    buzzphrase.get({
        iterations: iterations,
    });
  • buzz(iterations)

    • DEPRECATED: instead use
    buzzphrase.log({
        iterations: iterations,
    });
  • log(config): same as get(config) but also uses console.log to spit this out into STDOUT

Testing

npm test

Testing all supported node.js versions

  1. install docker | Docker for Mac | Docker for Windows
  2. run tests
npm run nodeversions

Author

Adam Eivy is a Principal Software Engineer at a large media company by day and a drawing dad by night. Find him here on the interwebs

follow

Related

If you like this module, check out antic or BuzzphraseBot for lulz!