tv_check

0.0.1 • Public • Published

TV Check

A simple package to check if a requested browser is a television.

Why?

I was working on a web application that needed act differently on television. To my surprise there wasn't anything simple enough out there yet. That is why I decided to make this and put in in npm.

How?

Install

To install just run

npm install tv_check --save

Usage

By example with express

 
var tvCheck = require('tv_check');
var express = require('express');
var app = express();
 
 
app.get('/', function( req, res ){
  if( tvCheck.check( req ) === false ){
    // Normal code ...
  } else{
   // Television code ...
  };
});
 

Contributing

  • Fork it
  • Create your feature branch (git checkout -b my-new-feature)
  • Commit your changes (git commit -am 'Add some feature')
  • Push to the branch (git push origin my-new-feature)
  • Create a new Pull Request

Tests

We are using mocha for test. To test just run

npm test
# or  
make test

License

This package is under MIT License

Package Sidebar

Install

npm i tv_check

Weekly Downloads

9

Version

0.0.1

License

none

Last publish

Collaborators

  • pindakaasman