2.0.0 • Published 6 years ago

connect-categorizr v2.0.0

Weekly downloads
22
License
-
Repository
github
Last release
6 years ago

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
2.0.0

6 years ago

1.2.0

10 years ago

1.1.0

12 years ago

1.0.0

12 years ago