Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/damonoehlman/feature
Highly targeted feature detection for the browser using browserify
https://github.com/damonoehlman/feature
Last synced: 7 days ago
JSON representation
Highly targeted feature detection for the browser using browserify
- Host: GitHub
- URL: https://github.com/damonoehlman/feature
- Owner: DamonOehlman
- License: isc
- Created: 2013-04-24T10:55:34.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2018-11-28T06:23:31.000Z (almost 6 years ago)
- Last Synced: 2024-10-25T20:37:02.927Z (21 days ago)
- Language: JavaScript
- Size: 38.1 KB
- Stars: 8
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# feature
Feature-detection at a highly targeted level.
[![NPM](https://nodei.co/npm/feature.png)](https://nodei.co/npm/feature/)
[![stable](https://img.shields.io/badge/stability-stable-green.svg)](https://github.com/dominictarr/stability#stable)
## What about Modernizr?
[Modernizr](https://github.com/Modernizr) is wonderful, no doubt about it.
It is however, pretty massive and while it can be whittled down to a smaller
size using customization from the download page, I'm just a bit too lazy
for that.By leveraging Browserify's excellent static analysis (powered by
[esprima](https://github.com/ariya/esprima)), when `feature` is
used within an application in a selective way, only the targeted feature
detection is included in the resultant JS file.So if I was to write the following require:
```js
var fullscreen = require('feature/fullscreen');
```Then only the
[fullscreen](https://github.com/DamonOehlman/feature/blob/master/fullscreen.js)
code from feature would be included in my application. All the rest of the
module would simply be ignored. So that's why. It's purely selfish, and
well you should feel free to keep on using Modernizr.## Reference
### css(prop)
Test for the prescence of the specified CSS property (in all it's
possible browser prefixed variants). The returned function (if we
are able to access the required style property) is both a getter and
setter function for when given an element.Consider the following example, with regards to CSS transforms:
```js
var transform = require('feature/css')('transform');
var crel = require('crel');
var el = crel('div', 'test');// if we have transforms available, then apply one
if (transform) {
transform(el, 'translate(500px, 100px)');
}// add the test div to the document
document.body.appendChild(el);// log out the el position
console.log(el.getBoundingClientRect().left);
// ~~> 508
```### detect
The core functionality of the feature module is powered by the `detect`
function, which can be imported like so:```js
var detect = require('feature/detect');
```Once you have the detect function available you can do nifty things like
detect whether your browser supports `requestAnimationFrame`:```js
var raf = require('feature/detect')('requestAnimationFrame');function logRandom() {
console.log(Math.random());
raf(logRandom);
}// create a requestAnimationFrame fallback
raf = raf || function(fn) {
setTimeout(fn, 1000 / 60);
};// start logging random numbers (for some reason...)
logRandom();
```If it does then `raf` will be a function that is equivalent to the browser
prefixed requestAnimationFrame function (e.g. webkitRequestAnimationFrame).
It should be noted that feature does nothing to try and polyfill things that
don't exist, that is left to you to implement yourself.### fullscreen
If the [Fullscreen API](http://caniuse.com/#feat=fullscreen) is available
this will allow you to fullscreen either the document or a target element.```js
var fullscreen = require('feature/fullscreen');if (fullscreen) {
fullscreen();
}
```Additionally, the function can be passed directly to an event handler and
the function will fullscreen just the selected element. This is useful
in the case of videos, images, etc.```js
var fullscreen = require('feature/fullscreen');
var crel = require('crel');
var img = crel('img', {
src: 'http://upload.wikimedia.org/wikipedia/commons/d/d3/Jim_jim_falls.jpg',
});img.addEventListener('click', fullscreen);
document.body.appendChild(img);
```## License(s)
### ISC
Copyright (c) 2016, Damon Oehlman
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.