Skip to content

davidwood/connect-categorizr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

connect-categorizr Build Status

Connect middleware that provides device detection, based on Brett Jankord's Categorizr.

Installation

npm install connect-categorizr

Options

  • useSession: Store the device type in the session for quicker lookups on subsequent requests. Defaults to true.

Usage

var connect = require('connect'),
    categorizr = require('connect-categorizr');

var app = connect();
app.use(categorizr());

The middleware will add the following immutable properties to the req object:

  • deviceType: String containing the matched device type (mobile, tablet, desktop or tv)
  • isMobile: true if the device is a phone
  • isTablet: true if the device is a tablet
  • isDesktop: true if the device is a desktop browser
  • isTV: true if the device is a TV

Testing

First, install the test dependencies

npm install -d

and then run the tests

make test

About

Connect middleware for device detection based on Categorizr

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published