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

mirror-mirror

v1.0.1

Published

Test your UI changes in production before deploying to production

Downloads

12

Readme

mirror-mirror Build Status npm version Dependency Status

Magic mirror in my hand, tell me if my website will look ugly in production before deploying to production.

img

This is a wrapper around the wonderful Nightmare.js for:

  • Opening a matrix of urls and viewports with Chrome
  • Specify a set of operations to perform
  • Take a screenshot
  • Make some changes (like swapping a CSS file, changing Js or HTML)
  • Take another screenshot
  • Compare the screenshots and save a diff file with the highlighted differences

Most important features:

  • Crazy quick compare to Selenium with Phantom
  • Able to hide/show Browser
  • Works with any OS
  • Able to use DevTools and do debugging with Chrome

Requirements

Build status: Unix:

Install it

$ npm install mirror-mirror

Use it

var mirror = require('mirror-mirror');

var runner = mirror();

runner.setup({
  urls: {
    home: 'https://www.amazon.com'
  },

  selector: '#nav-search',
  transform: () => {
    // Replace Amazon search with Google widget. Because it is funny.
    return '<form name="cse" id="searchbox_demo" action="https://www.google.com/cse">' +
            '<input type="hidden" name="cref" value="" />' +
            '<input type="hidden" name="ie" value="utf-8" />' +
            '<input type="hidden" name="hl" value="" />' +
            '<input name="q" type="text" size="40" />' +
            '<input type="submit" name="sa" value="Search" />' +
            '</form>' +
            '<script type="text/javascript" src="https%3A%2F%2Fcse.google.com%2Fcse/tools/onthefly?form=searchbox_demo&lang="></script>';
  },
  screenshotsPath: './screenshots'
});

runner.run((err, result) => {
  console.log(result);
  /*
  {
    home: {
      after: '/Users/mfigus/Documents/os/mirror-mirror/screenshots/home-after.png',
      before: '/Users/mfigus/Documents/os/mirror-mirror/screenshots/home-before.png',
      diff: '/Users/mfigus/Documents/os/mirror-mirror/screenshots/home-diff.png',
      isDifferent: true,
      equality: 99.82844939446368
    }
  }
  */
});

API

  1. Set up an instance
  2. Configure the runner
  1. Start the runner

Set up an instance

var mirror = Mirror([NighmareOptions]);

Look at Nighmare.js options.

Configure the runner

mirror.setup(mirrorOptions);

This is an object with the following structure:

|name|type|mandatory|description| |----|----|---------|-----------| |after|array of functions|no|An array of nightmareJs actions to perform after the transformation and before the second screenshots. Look at the example below| |before|array of functions|no|An array of nightmareJs actions to perform before the first screenshots. Look at the example below| |concurrency|number|no|Default 3, is the concurrency of tests| |cookies|object|no|Allows to specify cookies to be used for each request| |debug|boolean|no|When true, shows stuff in the console| |headers|object|no|Allows to specify headers to be used for each request| |retries|number|no|Default 3, number of retries after a failing session| |screenshotsPath|string|yes|The path where to save the screenshots| |selector|string|yes|The css selector for the DOM tree you want to transform. It can be anything document.querySelector can understand| |timeout|number|no|Default 20000, when the sessions is going to be restarted| |transform|string or function|yes|The transformation to apply to the selector. If string, element will be replaced with the markup provided in the string. When function, it needs to transform a string to be replaced in the selected DOM tree. The function will have an element as parameter - the result of previous selection| |urls|object|yes|The urls to test. Key is used to generate screenshots file name so keep it simple and without spaces and stuff| |viewports|array of arrays|no|Default [[800, 600]], is an array containing all the viewport resolutions for executing the tests|

Nightmare actions example

This example shows how to make a screenshot with a menu opened, assuming the transformation replaces the menu and then needs to run another javascript initialisation and then wait to complete before performing the same action again.

mirror.setup({
  ...
  before: [
    // Assuming jQuery is in the page
    nightmare => nightmare.evaluate(() => $('navbar-button').click())
  ],
  after: [
    (nightmare) => {
      return nightmare.evaluate(() => {
        window.menusReady = false;
        window.menus.initialise(() => {
          window.menusReady = true;
        });
      });
    },
    nightmare => nightmare.wait(() => window.menusReady === true),
    nightmare => nightmare.evaluate(() => $('navbar-button').click())
  ]
});

Start the runner

mirror.run(callback);

Where callback is going to have an error and/or a response with the results. If any of the requests fails, the callback will include both an error + the response with succeeding screenshot links.

Contributing

Yes please. Open an issue first.

License

MIT