Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
modernizr-prebuilt
Advanced tools
Modernizr, the JavaScript library that detects HTML5 and CSS3 features in the user’s browser, in a pre-built form, so that it can be directly included into the browser for client-side usage.
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.
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.
npm install
Run the test suite
npm install
grunt build
//outputs to ./dist/modernizr-build.js
grunt test
grunt build
serve .
visit <url>/test
serve the root dir, <url>/test/modular.html
jekyll
serve ./_sites
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.code); // full source
console.log(result.min); // minfied output
});
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.
MIT license
FAQs
Modernizr, the JavaScript library that detects HTML5 and CSS3 features in the user’s browser, in a pre-built form, so that it can be directly included into the browser for client-side usage.
The npm package modernizr-prebuilt receives a total of 0 weekly downloads. As such, modernizr-prebuilt popularity was classified as not popular.
We found that modernizr-prebuilt demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.