MCPcopy
hub / github.com/Modernizr/Modernizr

github.com/Modernizr/Modernizr @v3.13.1 sqlite

repository ↗ · DeepWiki ↗ · release v3.13.1 ↗
103 symbols 471 edges 432 files 36 documented · 35%
README

Modernizr

npm version Build Status Inline docs

Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user’s browser.

Modernizr tests which native CSS3 and HTML5 features are available in the current UA and makes the results available to you in two ways: as properties on a global Modernizr object, and as classes on the <html> element. This information allows you to progressively enhance your pages with a granular level of control over the experience.

New Asynchronous Event Listeners

Often times people want to know when an asynchronous test is done so they can allow their application to react to it. In the past, you've had to rely on watching properties or <html> classes. Only events on asynchronous tests are supported. Synchronous tests should be handled synchronously to improve speed and to maintain consistency.

The new API looks like this:

// Listen to a test, give it a callback
Modernizr.on('testname', function( result ) {
  if (result) {
    console.log('The test passed!');
  }
  else {
    console.log('The test failed!');
  }
});

We guarantee that we'll only invoke your function once (per time that you call on). We are currently not exposing a method for exposing the trigger functionality. Instead, if you'd like to have control over async tests, use the src/addTest feature, and any test that you set will automatically expose and trigger the on functionality.

Getting Started

  • Clone or download the repository
  • Install project dependencies with npm install

Building Modernizr

From javascript

Modernizr can be used programmatically via npm:

var modernizr = require("modernizr");

A build method is exposed for generating custom Modernizr builds. Example:

var modernizr = require("modernizr");

modernizr.build({}, function (result) {
  console.log(result); // the build
});

The first parameter takes a JSON object of options and feature-detects to include. See lib/config-all.json for all available options.

The second parameter is a function invoked on task completion.

From the command-line

We also provide a command line interface for building modernizr. To see all available options run:

./bin/modernizr

Or to generate everything in 'config-all.json' run this with npm:

npm start
//outputs to ./dist/modernizr-build.js

Testing Modernizr

To execute the tests using mocha-headless-chrome on the console run:

npm test

You can also run tests in the browser of your choice with this command:

npm run serve-gh-pages

and navigating to these two URLs:

http://localhost:8080/test/unit.html
http://localhost:8080/test/integration.html

Deprecation

These tests are considered deprecated. They are not included anymore in the default build and will be removed in the next major version:

  • touchevents (in 4.0)
  • unicode (in 4.0)

Code of Conduct

This project adheres to the Open Code of Conduct. By participating, you are expected to honor this code.

License

MIT License

Core symbols most depended-on inside this repo

createElement
called by 128
src/html5shiv.js
addTest
called by 74
src/addTest.js
cleanup
called by 48
feature-detects/workers/blobworkers.js
testAllProps
called by 45
src/testAllProps.js
is
called by 18
src/is.js
computedStyle
called by 16
src/computedStyle.js
testProp
called by 14
test/browser/integration/prefixedCSS.js
testProps
called by 14
src/testProps.js

Shape

Function 103

Languages

TypeScript100%

Modules by API surface

src/html5printshiv.js14 symbols
src/html5shiv.js8 symbols
test/browser/integration/prefixedCSS.js4 symbols
feature-detects/css/hyphens.js4 symbols
feature-detects/flash.js3 symbols
test/browser/src/testProps.js2 symbols
test/browser/src/setClasses.js2 symbols
test/browser/src/prefixes.js2 symbols
test/browser/src/domPrefixes.js2 symbols
test/browser/src/cssomPrefixes.js2 symbols
test/browser/src/addTest.js2 symbols
test/browser/setup.js2 symbols

Used by 2 indexed graphs manifest dependencies, hub-wide

Dependencies from manifests, versioned

@babel/core7.22.9 · 1×
@babel/preset-env7.22.9 · 1×
@babel/register7.22.5 · 1×
auto-changelog2.4.0 · 1×
chai4.3.7 · 1×
del5.1.0 · 1×
doctrine3.0.0 · 1×
eslint6.8.0 · 1×
eslint-plugin-jsdoc24.0.6 · 1×
file0.2.2 · 1×
find-parent-dir0.3.1 · 1×
fs-extra8.1.0 · 1×

For agents

$ claude mcp add Modernizr \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact