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

css-validator-no-cli

v0.9.0

Published

Validate CSS via W3C's service

Downloads

3

Readme

css-validator Build status

Validate CSS via W3C's service

This was created to validate CSS inside of the json2css test suite.

Getting Started

Install the module with: npm install css-validator

var validateCss = require('css-validator');
var assert = require('assert');
validateCss({text: 'a { color: blue; }'}, function (err, data) {
  assert.strictEqual(data.validity, true);
  assert.deepEqual(data.errors, []);
  assert.deepEqual(data.warnings, []);
});

Donations

Support this project and others by twolfson via donations

Documentation

css-validator returns a single function as its module.exports

validateCss(options, cb)

Validate CSS against W3C's Jigsaw validation service

  • options String|Object - If options is a String, it will be treated as options.text
    • w3cUrl String - URL to validate against. Default is http://jigsaw.w3.org/css-validator/validator
    • The following options from the validator itself
      • Reference: http://jigsaw.w3.org/css-validator/manual.html#api
    • uri null|String - URL of document to validate. CSS and HTML documents are allowed
    • text null|String - CSS to validate
    • usermedium String - Medium where the CSS will be used (e.g. all, print, screen)
      • Service's default value: all
    • profile String - CSS profile to use for validation (e.g. css3svg, css21, svg)
      • Service's default value: css3svg
    • lang String - Language to use in response (e.g. en, bg, de)
      • Service's default value: en
    • warning Number|String - Warning level to set. Default is 2
      • Service's default value: 2
      • If set to no, no warnings will be returned
      • If set to 0, less warnings will be returned
      • If set to 1 or 2, more warnings will be returned
    • vextwarning String|Boolean - Allow vendor extensions to just show up as warnings
      • Possible values: false, true
      • Service's default value: false
  • cb null|Function - Error first callback with function (err, data) {} signature
    • err null|Error - If there was a connetivity error, this will be it
    • data null|Object - Container for response from jigsaw
      • validity Boolean - If there were no errors, this will be true. Otherwise, it is false.
      • errors Object[] - Array of errors
        • These are dynamically parsed and not guaranteed to exist. The service only guarantees line, level, and message.
          • Reference: http://jigsaw.w3.org/css-validator/api.html#soap12message
        • line Number - Line where error occurred
        • errortype String
        • context String
        • errorsubtype String
        • skippedstring String - Content where error occurred
        • message String - Human readable information about the error and why it occurred
      • warnings Object[] - Array of warnings
        • line Number - Line where error occurred
        • level Number - Intensity of the warning. See options.warning for more info
        • message String - Human readable information about the warning and why it occurred

If cb is not provided, a DuplexStream will be returned to you.

If you have not provided options.uri or options.text, you can .write + .end OR .pipe to the stream CSS to validate.

Additionally, you can use .read and .pipe to get the data returned by cb.

The stream will emit the following events:

  • error Error - Error occurring during connection or parsing of response
  • data Object - Same as data sent to cb. Emitted once.
  • end - Emitted when we have finished parsing the input and outputting events
  • validity Boolean - Event for data.validity with data.validity as its data
  • validation-error Object - Event for a new data.errors object with the error as its argument
  • validation-warning Object - Event for a new data.warnings object with the warning as its argument

CLI

css-validator offers a command line interface for validation:

$ css-validator --help

  Usage: css-validator [options] <filepath ...>

  Options:

    -h, --help                   output usage information
    -V, --version                output the version number
    --w3c-url <url>              URL to validate against. Default is http://jigsaw.w3.org/css-validator/validator
    --delay <ms>                 Delay between validation requests to avoid service blacklisting, defaults to 100ms
    --concurrency <concurrency>  Amount of requests to run in parallel, defaults to 1
    --usermedium <usermedium>    Medium where the CSS will be used (e.g. `all` (service default), `print`, `screen`)
    --profile <profile>          CSS profile to use for validation (e.g. `css3svg` (service default), `css21`, `svg`)
    --lang <lang>                Language to use in response (e.g. `en` (service default), `bg`, `de`)
    --warning <warning>          Warning level to set (e.g. `0`, `1`, `2` (service default), `no`)
    --vextwarning <vextwarning>  Allow vendor extensions to just show up as warnings. Possible values are: `true`, `false` (service default)

Examples

var cssValidate = require('css-validator');
var css = [
  "body {",
  "  background: url(ab'cd');",
  "  -moz-box-sizing: content-box;",
  "}",
].join('\n');

cssValidate(css, function (err, data) {
  console.log(data);
  /*
  { validity: false,
  errors:
   [ { line: '2',
       errortype: 'parse-error',
       context: ' body ',
       errorsubtype: '\n                                exp\n                            ',
       skippedstring: '\n                                url(ab \'cd\')\n                            ',
       message: '\n        \n                                Value Error :  background (nullcolors.html#propdef-background)\n        \n                                url(ab \'cd\') is not a background-color value : \n                            ',
       error: '\n                        ' } ],
  warnings:
   [ { line: '3',
       level: '0',
       message: 'Property -moz-box-sizing is an unknown vendor extension',
       warning: '\n                        ' } ] }
  */
});

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint via npm run lint and test via npm test.

Unlicense

As of Nov 27 2013, Todd Wolfson has released this repository and its contents to the public domain.

It has been released under the UNLICENSE.