npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

defunctr

v1.3.2-beta.2

Published

JavaScript library for web browser detection by feature detection.

Downloads

26

Readme

Defunctr Github version Join the chat at https://gitter.im/cinecove/defunctr

Defunctr is a Javascript library that detects browsers using feature detection for use in HTML5 and CSS3.

| Package Manager | Current Release and Statistics | | ------- | ---------------------------| |CDN|jsDelivr| |NuGet| NuGet version| |Bower| Bower version | |NPM| npm version |

Defunctr detects which browser is visiting your site by detecting feature sets the browser supports. The purpose is to allow UX changes where a change must be made explicitly to an older browser. Using user-agent detection easily fails and apply browser hacks do not work in all cases. Defunctr makes this detection available in two ways: as properties on a global defunctr object, and as classes on the <html> element. This information allows you to enhance your pages with a granular level of control.

Defunctr has the ability to exclude testing and tagging by appending any of the following classes to your pages <html> element:

| CSS Class | Description | | ------- | ---------------------------| |defunctr-off|Defunctr will NOT add any classes to the <head> element| |defunctr-ie-only|Defunctr will only include ie testing| |defunctr-version-off|Defunctr will not add browser version classes to the <head> element| |defunctr-lt-off|Defunctr will not add less than version classes to the <head> element| |defunctr-gt-off|Defunctr will not add greater than version classes to the <head> element|

Classes created by Defunctr

Defunctr will execute a series of browser detection tests. The tests will be assigned to Modernizr if it is present. Modernizr is not required. Defunctr (or Modernizr) will apply class names to the <html> element based on the results of the test. The class name will be appended with no- if the test result is false.

Assume you had a css class definition called button that will style a gradient background with a rounded border.

	.button {
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
		border-radius: 6px;
		background: #1e5799;
		background: -moz-linear-gradient(top, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%);
		background: -webkit-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%);
		background: linear-gradient(to bottom, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%);
	}

Now we want a special condition for Internet Explorer version below 10.


	.button {
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
		border-radius: 6px;
		background: #1e5799;
		background: -moz-linear-gradient(top, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%);
		background: -webkit-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%);
		background: linear-gradient(to bottom, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%);
	}

	.ie-lt-10 .button {
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=0 );
	}

Now we need to hack the border radius for Internet Explorer 8 and below, and Opera below 10:


	.button {
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
		border-radius: 6px;
		background: #1e5799;
		background: -moz-linear-gradient(top, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%);
		background: -webkit-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%);
		background: linear-gradient(to bottom, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%);
	}

	.ie-lt-10 .button {
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=0 );
	}

	.ie-lt-9 .button {
		position: relative;
		behavior: url(/css/border-radius.htc);
		zoom: 1;
	}
	.opera .button {
		... render in svg ...
	}

While Modernizr provides some really useful tests, sometimes we want to know the foundation we are working against to creatively hack a feature to render. This is the purpose of Defunctr.

Browser Type Tests

The browser type tests detect the browser that is running without using any information set in the user-agent string. These tests include Quirks mode and Internet Explorer's emulation modes.

| CSS Class | Description | | ------- | ---------------------------| |undetected-browser|Defines if Defunctr is unable to detect the browser.| |ie|Defines if the browser is Internet Explorer. This feature is always on.| |edge|Defines if the browser is Microsoft Edge. (Edge is Not and IE Browser)| |chrome|Defines if the browser is Chrome.| |safari|Defines if the browser is Safari.| |webkit|Defines if the browser is Webkit including Chrome, Safari, and Opera Next.| |firefox|Defines if the browser is Firefox.| |opera|Defines if the browser is Opera (non-webkit).| |opera-next|Defines if the browser is Opera Next (webkit).|

Internet Explorer Version Tests

The greater than tests allow you to detect if the current Internet Explorer is running as a specific version.

| CSS Class | Description | | ------- | ---------------------------| |ie-version-7|Defines if the browser is IE 7.| |ie-version-8|Defines if the browser is IE 8.| |ie-version-9|Defines if the browser is IE 9.| |ie-version-10|Defines if the browser is IE 10.| |ie-version-11|Defines if the browser is IE 11.| |ie-version-12|Defines if the browser is IE12.|

Internet Explorer Version (Less Than) Tests

The greater than tests allow you to detect if the current Internet Explorer is running below a specific version.

| CSS Class | Description | | ------- | ---------------------------| |ie-gt-6|Defines if the browser is IE 7+.| |ie-gt-7|Defines if the browser is IE 8+.| |ie-gt-8|Defines if the browser is IE 9+.| |ie-gt-9|Defines if the browser is IE 10+.| |ie-gt-10|Defines if the browser is IE 11+.| |ie-gt-11|Defines if the browser is IE 12+.|

Internet Explorer Version (Greater Than) Tests

The greater than tests allow you to detect if the current Internet Explorer is running above a specific version.

| CSS Class | Description | | ------- | ---------------------------| |ie-lt-7|Defines if the browser is less than IE 7.| |ie-lt-8|Defines if the browser is less than IE 8.| |ie-lt-9|Defines if the browser is less than IE 9.| |ie-lt-10|Defines if the browser is less than IE 10.| |ie-lt-11|Defines if the browser is less than IE 11.| |ie-lt-12|Defines if the browser is less than IE 12.|

Browser Support

We support most browsers, which is the point of using our module in the first place :-)

  • Internet Explorer 5+
  • Edge
  • Firefox 0.8+
  • Chrome 1+
  • Safari 3+
  • Opera 8+ (including Opera Next)
  • Khtml

Things to know about this release

  • Opera Next is detected as Opera-Next not Opera.
  • Only Internet Explorer is supported for version information.
  • Kindle Fire has an issue where it is detected as Khtml and Chrome.
  • Android Emulators are unpredictable and may report Chrome as Safari or even Khtml.
  • All 3rd party browsers (Chome, Firefox) will be correctly detected as Safari on iOS. All browsers on iOS are required to use Apple's provided frameworks for accessing the web. These browsers are only shells around Safari.
  • Defunctr is deprecated and will be removed in 2.0. Use defunctr instead.
  • defunctr.detective is deprecated and will be removed in 2.0. Use defunctr.browser() instead.

CDN Delivery

Help Us Get On CDNJS:

We would like to add CDNJS to our list in the future. CDNJS requires a github project star rating above 100. If you would like to see Defunctr hosted there, please contribute by starring this project.

Defunctr is available on the jsDelivr content delivery network.

To use Defunctr via jsDelivr add the following script to your html (replace the version with the one you wish to use). Be sure to add Modernizr before you add Defunctr.

	...
	<body>
		...

		<script type="text/javascript" src="//cdn.jsdelivr.net/modernizr/3.3.1/modernizr.min.js"></script>
		<script type="text/javascript" src="//cdn.jsdelivr.net/npm/defunctr@{version}/dist/defunctr.js"></script>
	</body>
	...

Including Modernizr is not required.

Version aliasing with jsDelivr (Version > 1.3)

For latest version use:

//cdn.jsdelivr.net/npm/defunctr@latest/dist/defunctr.js

You can also load versions per branch:

//cdn.jsdelivr.net/npm/[email protected]/dist/defunctr.js Exact 1.3.1 branch

//cdn.jsdelivr.net/npm/[email protected]/dist/defunctr.js Latest in 1.3.* branch

//cdn.jsdelivr.net/npm/defunctr@1/dist/defunctr.js Latest in 1.* branch

A path shortcut is available //cdn.jsdelivr.net/defunctr@latest. All @ commands work. You MUST omit any trailing / on the url for this to work. A trailing / will display the directory contents.

Version aliasing with jsDelivr (Version < 1.3)

For latest version use:

~~//cdn.jsdelivr.net/defunctr/latest/defunctr.min.js~~

Pulling the latest no longer works as jsDelivr has moved to a new format (above)

You can also load versions per branch:

//cdn.jsdelivr.net/defunctr/1.2.3/defunctr.min.js Exact 1.2.3 branch

//cdn.jsdelivr.net/defunctr/1.2/defunctr.min.js Latest in 1.2.* branch

~~//cdn.jsdelivr.net/defunctr/1/defunctr.min.js Latest in 1.* branch~~

Pulling the latest 1.* branch no longer works as jsDelivr has moved to a new format (above)

Bower

To Install with bower.

Just run

    $ bower install defunctr

NPM

To Install with npm.

Just run

    $ npm install defunctr

Isomorphic (Server Side) Rendering: Defunctr does not currently suport isomporphic rendering. This feature is coming in a future release. To bring this feature in requires a breaking change.

NuGet

To Install with NuGet

Using the NuGet package manager, execute:

	PM> Install-Package Defunctr

NOTICE: Visual Studio 2015 users should begin migrating to NPM. New projects created in Visual Studio 2015 and above should use the NPM package.

Building the code

Required Tools

  • Node
  • NPM
  • Gulp

Optional Tools

check out the source code


#create your project directory
$ mkdir defunctr

#clone this repository
$ git clone https://github.com/Cinecove/defunctr.git .

# BUILD using npm and grunt:
$ npm install

# If you want to send us changes, you should fork
# the project into your own account first, and use
# that URL to clone it.

# If you fork it later you can just change the origin by:

# move the old origin out of the way. You could delete it if you want.
$ git remote rename origin upstream

# add your repo url as the origin:
# e.g. [email protected]:victoriafrench/defunctr.git
$ git remote add origin <your-repo-url>

# the compiled modules are located in the release directory.
# tests are located in the tests directory and reference the
# release directory

$ cd release

License

Defunctr is licensed under the MIT license

Project Dashboard Build Status first-timers-only Greenkeeper badge bitHound Code

You can see issues, pull requests, backlog items, etc. in the OneGet Dashboard

| Stage | Stats | | ------- | ---------------------------| |Pending|Stories in Progress Stories in Progress Stories in Progress Stories in Progress | |Development|Stories in Progress Stories in Progress| |QA|Stories in Progress Stories in Progress Stories in Progress Stories in Progress|

Throughput Graph

Throughput Graph

Branches

There are currently three branches in the git repository:

| Branch/Tag | Purpose | | ------- | ---------------------------| |master| The master branch is where the daily builds are made from. | |v*| The v* tags are to mark each release. Older builds used release/v*. | |feature/*| The feature/* branch is where the current unstable and not-likely-working coding is taking place that is being shared across forks. | |legacy-1.x| The legacy-1.x branch the original master before the project went into a build process. It is no longer used and will be deleted in the future. |

Team Members

| Branch | Purpose | | ------- | ---------------------------| |@cinecove| Project sponsor and administrator | |@victoriafrench| Program Manager on Defunctr and original developer/creator. |

Special Thanks

We would like to give a shout-out to JetBrains for providing WebStorm licenses to our project! Big Huge Hugs!

BrowserStack had provided us with a valuable testing account for this project. We greatly appreciate their support and hope you check them out!

Analytics