GithubHelp home page GithubHelp logo

requirejs-plugin-modernizr's Introduction

requirejs-plugin-modernizr

A RequireJS loader to load specific Modernizr modules.

This plugin is inspired by and based on lodash-requirejs-loader-plugin.

Dependencies

The method and feature-detect maps are based on Modernizr 3.3.1. The Modernizr files need to be modified for this loader to work! All module dependencies need to be prefixed (relative) which breaks Modernizr's builder.

I have created a fork until I figure out a way to co-exist with the Modernizr builder.

Update: All modules are now prefixed. The builder is still reluctant, but should work 'soon'.

Installation

Add the following entries to your bower.json file.

{
	"dependencies": {
		"requirejs-plugin-modernizr": "*",
		"modernizr": "https://github.com/fkm/Modernizr.git#relative-deps",
    }
}

Configuration

requirejs.config({
	paths: {
		mdzr: 'path/to/bower_components/requirejs-plugin-modernizr/main',
		modernizr: 'path/to/bower_components/modernizr',
	},
});

Usage

require(['mdzr!prefixed,prefixedCSS,dataset,createelementattrs+'], function (Modernizr) {
	console.log(
		Modernizr.prefixed('requestAnimationFrame'),
		Modernizr.prefixedCSS('transition'),
		Modernizr.dataset,
		Modernizr.createelementattrs
	);
});

The plus (+) at the end of a test name will add the corresponding class to the DOM.

Optimization

There is currently no special routine for the RequireJS optimizer.

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.