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

feebas

v0.3.0

Published

Feebas is screenshot comparison tool which is intended to be used as a part of catching the visual regressions in end to end tests.

Downloads

108

Readme

feebas

CI

Feebas is screenshot comparison tool which is intended to be used as a part of catching the visual regressions in end to end tests.

npm install --save-dev feebas

How it works?

The basic philosophy of feebas is to compare current screenshots (e.g. screenshots taken during e2e tests in pipeline) with truth screenshots which defines the desired appearance of the application.

app preview

Recommended Setup and Workflow

  1. Screenshot your application during e2e tests in pipeline (e.g. gitlab pipeline) and save the screenshots as job artifacts. If you are using Cypress you can use screenshot function to take screenshots.
  2. Define the truth screenshots (e.g. with first run of the pipeline) and save them into your repository. Setup GIT LFS for your repository to handle the big files.
  3. Setup feebas (proceed to section - setup)

Now, when your pipeline fails because of visual regression.

  1. Checkout on the commit of that pipeline - run git checkout <commit_id>
  2. Open feebas - npx feebas
  3. Look for the differences in screenshots
  • if your visual changes were intended
    • Select screenshots you want to update
    • Click on the approve button in top right corner
    • It will overwrite screenshots in the repository, so you need to git add . them and then git commit them
  • if your visual changes were not intended
    • Fix the source of visual regression (bug)
    • Push the fix and proceed to the first step

Setup

  1. Install feebas npm install --save-dev feebas (you probably want it as a dev dependency)
  2. Create feebas.config.json in your project root, the file should look like this. Alternatively you can provide path to configuration file - npx feebas --config ./example/path/to/feebas.config.json. Example file with gitlab integration is available here.
    {
        "projects": [
            {
                "name": "example",
                "screenshots": {
                    "current": {
                       ... // some integration (e.g. gitlab)
                    },
                    "truth": {
                       "type": "fs-local",
                       "path": "./example/path/to/truth_screenshots"
                   }
                }
            }
        ]
    }

Running feebas

You can run feebas via npx feebas. Possible arguments.

  • config - path to config file, the default path is ./feebas.config.json relative to repository root. Example: npx feebas --config=/feebas/feebas.config.json
  • project - project to open. If you have only one project defined in configuration file, that project is opened by default. If you have multiple projects, the home page with project selector is opened on feebas launch. If you want to bypass that screen use project argument. Example: npx feebas --project=SomeProjectName

Integrations

Gitlab

  • url - string - gitlab url
  • project_id - number - id of the gitlab project - repository
  • authentication - object
    • type - string - type of authentication into the gitlab, currently is available authentication only with access token. For authentication with access_token get your gitlab access token and set it into the environment variable FEEBAS_GITLAB_TOKEN.
  • jobs - array - array of jobs from which will be downloaded screenshots.
    • job
      • name - string - name of the job
      • path - string (optional) - path to the directory inside job artifacts (e.g. to the directory where are current screenshots stored)
        {
            "name": "exmaple job name",
            "path": "/example/path"
        }
  • strategy - string - "merge" | "default" (optional) - when merge option is used all artifacts from the jobs will be merged, otherwise they will be stored in the directory with name of their job name
  • filter - object - you can define files from artifacts which will be ignored
    • rules - array of strings
    • strategy - "blacklist" | "whitelist"
      {
          "rules": ["*(failed)*", "tmp_*"],
          "strategy": "blacklist"
      }

Opening Specific Project and Commit (experimental)

It is possible to open feebas from your browser. Just open URL in this format: feebas://projectId:commitId.

Contributing

Contributing guidelines are available in CONTRIBUTING.md.