Giter Club home page Giter Club logo

compat's Introduction

compat.js Build Status

Static analysis tool for detecting browser compatibility issues in JavaScript and HTML.

Installation

npm install compat-cli

Usage

By default, compat will check files ending with .js or .html in the current directory.

compat

To manually specify target files/directories, use the --target (-t) flag.

compat --target fileOne.js fileTwo.js directory

By default, compat will not recursively traverse directories to find all .js or .html files. Enable this functionality with the --recursive (-r) flag.

compat --recursive

By default, compat will search for all defined features when analysing targets. To specify what features compat will search for, use the --features (-f) flag.

compat --features es6-bindings let

The features flag supports both specifying individual features (like let in the above example) or specifying feature groups (like es6-bindings). Use the --supportedFeatures and --supportedFeatureGroups flags to show available features and feature groups.

Additionally, individual features or feature groups can be ignored using the --ignoreFeatures (-i) flag. The below example will detect all defined ES6 features, except for those relating to syntax.

compat --features es6 --ignoreFeatures es6-syntax

When run with the --enabledFeatures flag, compat will print out a list of features that it will be enabled for detection with the provided flags.

By default, compat will check for compatibility issues with the following environments:

  • Internet Explorer 11
  • Microsoft Edge 13 & 14
  • Chrome 56
  • Safari 9 & 10
  • Firefox 51

Use the --jsEnvs (-j) and --htmlEnvs (-h) flags to specify which environments to check for issues. Use the ---supportedEnvs flag to show available environments. There are separate flags for JS and HTML environments because they use different sources for their compatibility info.

compat --jsEnvs ie11 chrome54 --htmlEnvs ie11

All of the above flags can be specified in a config file. By default, compat will try to read ./.compat.config.js, but another config file can be specified with the --config (-c) flag. The config file must end with .js.

compat --config ./configs/compat-config.json

When run, compat will try to update its locally stored compatibility table if the sources for compatibility info have changed. Info for JS compatibility is loaded from kangax's compat-table and info for HTML compatibility is loaded from fyrd's caniuse. If the updated tables cannot be loaded for some reason, compat will use the last table it downloaded for checking compatibility.

Testing

Run tests with:

npm test

Lint with:

npm run lint

License

MIT

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.