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

react-goatse

v1.0.1

Published

Easily add Goatse easter egg to your React app

Downloads

8

Readme

react-goatse

Easily add Goatse easter egg to your React app

Build Status Coverage Status Code Climate Issue Count npm version

Installation

With npm:

$ npm install --save-dev react-goatse

Or with Yarn:

$ yarn add react-goatse

Usage

The usage is very simple, just pass a couple of optional props to Goatse component:

const Goatse = require('react-goatse');

// ...

render() {
  return (
    <Goatse
        keys={/* Array of keys to type to trigger the easter egg */}
        simultaneous={/* Add this prop if keys should be pressed all together */}
        timeout={/* Duration to show goatse, displayed forever if prop not passed */} />
  );
}

You can add react-goatse anywhere in your component hierarchy, because it adds a global keyboard events listener and doesn't stops any event bubbling.

For example:

const Goatse = require('react-goatse');


export default class YourComponent extends React.Component {
  render() {
    // When user types 'goatse' somewhere using your React app,
    // show Goatse easter egg.
    const shortcutKeys = ['g', 'o', 'a', 't', 's', 'e'];

    return (
      <Goatse
          keys={shortcutKeys}
          timeout={10000} />
    );
  }
}

Props

  • keys – Just array of string representing each button to be pressed;
  • simultaneous – Set this prop if user should press buttons all together;
  • timeout – Amount of time in milliseconds while goatse should be displayed.

Supported keys

All alphabetic letters and numbers could be passed as is, i.e. letter "a" is just "a".

If you use simultaneous mode and you have the Shift button in your hotkey combination, please set the unmodified buttons.

For example, to have a Shift+! hotkey, you should pass keys={["shift", "1"]}, because "Shift" and "1" pressed together produce "!".

Dependencies

Project uses react-easter to easily add an easter egg.

Test coverage

Library has ~100% test coverage:

$ npm run test:coverage

> [email protected] test:coverage ~/projects/react-goatse
> NODE_ENV=test jest --coverage --no-cache --config .jestrc

 PASS  test/Component.js
  <Goatse />
    ✓ Should render (9ms)
    ✓ Should render goatse with timeout (214ms)
    ✓ Should render goatse without timeout (206ms)
    ✓ Should render goatse with timeout simultaneously (206ms)
    ✓ Should render goatse without timeout simultaneously (203ms)

--------------|----------|----------|----------|----------|----------------|
File          |  % Stmts | % Branch |  % Funcs |  % Lines |Uncovered Lines |
--------------|----------|----------|----------|----------|----------------|
All files     |      100 |       50 |      100 |      100 |                |
 Component.js |      100 |       50 |      100 |      100 |                |
--------------|----------|----------|----------|----------|----------------|
Test Suites: 1 passed, 1 total
Tests:       5 passed, 5 total
Snapshots:   0 total
Time:        2.321s
Ran all test suites.

Code style

Library is 100% compatible with airbnb-base for ES5.

Available commands

Library has the following commands available:

  • Run the tests:

    $ npm test
  • Run the tests and display test coverage:

    $ npm run test:coverage
  • Run the linter:

    $ npm run lint

Build

No building required, library is implemented with ES5 React syntax for better compatibility and shipped as is.

License

Library is shipped "as is" under MIT License.

Contributing

Feel free to contribute but don't forget to test everything properly.

NPM