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 🙏

© 2026 – Pkg Stats / Ryan Hefner

website-auditfy

v0.1.14

Published

> Tool for validate your project on SEO, HTML, CSS, JS, TS, Performance, Security and A11Y

Readme

website-auditfy

Tool for validate your project on SEO, HTML, CSS, JS, TS, Performance, Security and A11Y

semantic NPM download npm

Table of Contents

Background

Current each developer using a lot of tools for checking accessibility, SEO, performance and e.t.c. (like lighthouse, wave and, eslint and e.t.c) This application try to merge all of them to one tool with simplify using.

Included

This tool included following modules:

| Module\Mode | URL | Static | Rule Count | |:--------------|:----|:--------|:-----------| | HTML | ☑ | ☑ | 81 | | CSS | ☑ | ☑ | 148 | | JavaScript | ☑ | ☑ | 100+ | | SEO | ☑ | ☑ | 20 | | Performance | ☑ | ☑ | 50 | | Accessibility | ☑ | ☑ | 92 | | Security | ☑ | ☑ | 16 | | TypeScript | - | - | - | | SASS/SCSS | - | - | - |

Packages inside

  • EsLint
    • security
    • standard
    • sonarjs
  • Lighthouse
  • StyleLint
    • standard
  • html-validator
  • @axe-core

Installation

Required:

- Node v20+

How to set up chrome-launher for your CI/CD see example here

NPM

npm install website-auditfy --save-dev // devDependencies
npm install website-auditfy -g // global

Yarn

yarn  add website-auditfy -D // devDependencies
yarn global add website-auditfy // global

PNPM

pnpm add -D website-auditfy // devDependencies
pnpm add -g website-auditfy // global

GitHub

The source code are available for download at GitHub Releases

Usage

CLI

Usage: website-auditfy [options] <-s, --source [path] (required) >

Simple CLI tools for check SEO, HTML, CSS, JS, TS, Performance, Security and A11Y

Arguments:
  -s, --source [path] (required)   
          URL or Path to the HTML file to audit
          Possible Values: <relative path|absolute path|URL>
          

Options:
  -c, --config [path]              
          Path to the JSON config file
          Possible Values: <relative path|absolute path>
  -q, --quite [boolean]            
          Print only errors and warnings
          Possible Values: <boolean>
           (default: "true")
  -w, --max-warning [number]
          Number of warnings to trigger -1 exit code
          Possible Values: <number>
                   
  -v, --version
          Print current version

  -h, --help
          Print help

Current version: 0.1.4

Examples:

    $ website-auditfy path/to/index.html -c ./path/to/config.json
    $ website-auditfy https://github.com

Config

Default Config is:

Full default config you can see here

{
  "modules": {
    "seo": {
      "canonical-not-localhost": "error",
      "canonical": "error",
      "meta-description": "error",
      ...
    },
    "html": {
      "attr-delimiter": "warning",
      "attr-spacing": "error",
      "close-attr": "error",
      ...
    },
    "security": {
      "require-csp-nonce":  "warning",
      "detect-eval-with-expression":  "warning",
      "detect-possible-timing-attacks":  "warning",
      "detect-unsafe-regex":  "warning",
      ...
    },
    "performance": {
      "viewport-insight": "warning",
      "uses-passive-event-listeners": "warning",
      "uses-long-cache-ttl": "error",
      .... 
    },
    "a11y": {
      "visual-order-follows-dom": "warning",
      "video-caption": "error",
      "valid-lang": "error",
      ...
    },
    "css": {
      "class-pattern": "warning",
      "id-pattern": "warning",
      "no-style-tag": "error",
      ...
    },
    "javascript": {
      "no-var": "warning",
      "object-shorthand":  "warning",
      "accessor-pairs": "error",
      ...
  }
}

Output

Example output

The CLI process may exit with the following codes:

  • 0: Audit succeeded without errors (warnings may have occurred)
  • 1: Audit failed with one or more rule violations with severity error
  • 2: An invalid command line argument or combination thereof was used

Future

  • rules properties
  • mode production, develop or release
  • source url or static
  • configuration custom modules
  • configuration custom rules
  • support plugins

Contribute

Lets fun :)

Usage By

Here can be your application :)

License

Apache