Skip to content

(fork)📱tiny/simple npm module for detecting webview status of a user-agent

License

Notifications You must be signed in to change notification settings

DreamTeamMobile/is-ua-webview

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

is-ua-webview

A super simple webview user-agent detector

Build Status

Installation

$ npm install is-ua-webview

Usage

const isWebview = require('is-ua-webview')

// just for testing:
const assert = require('assert')

// Facebook App embedded page load
assert(isWebview('Mozilla/5.0 (Linux; Android 4.4.4; One Build/KTU84L.H4) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/33.0.0.0 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/28.0.0.20.16;]'))

// Chrome/Android browser
assert(!isWebview('Mozilla/5.0 (Linux; Android 4.4.4; One Build/KTU84L.H4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.135 Mobile Safari/537.36'))

Tests

Run tests

npm test

Why

This was built for a web service that wanted to add a logging point in case the page load came from inside a webview where cookies were possibly throw away (not treated the same as a SafariViewController or native browser load). The tests are lacking completeness as this tool was only being used to discover and add detection in logs. The author of this module is no longer the owner/maintainer of the production service that used this module, so if you are interested in using it, please consider adding more tests and make a PR with tests :)

About

(fork)📱tiny/simple npm module for detecting webview status of a user-agent

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%