Skip to content
This repository has been archived by the owner on May 15, 2023. It is now read-only.

Test a user agent string against a list of browser targets and see if it matches.

Notifications You must be signed in to change notification settings

AppGeo/browser-check-service

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

browser-check-service

Test a user agent string against a list of browser targets and see if it matches.

API

GET /checkbrowser

Dynamically pulls the latest browser versions using a targets query and saves it in Google Cloud Storage for fast retrieval later on.

Query Params

Results (JSON)

  • Object
    • targets - Array of targets matched against
    • matchesTargets - Boolean, if the tested user agent string matched the targets.
    • userAgent - String, the user agent that was tested against the targets.

GET /listbrowsers

Pull the list used for a given target query from teh cache.

Query Params

Results (JSON)

  • Object
    • list - Array of browsers with their versions as strings
    • updated - String, date when list was updated

GET /updatebrowsers

Call this via a cron job (see cron.yaml) to update existing browser lists.

Note: Using GET because Google Cron jobs don't support setting a method.

CRON Jobs

Deploy via npm run deploy:jobs and edit in cron.yaml.

Updates the cache (stored in GCS) every 24 hours by default.

Deployment

Deployed to Google AppEngine Standard environment.

Run npm run deploy:app to deploy. Need to have gcloud cli setup before-hand.

Uses Google Cloud Storage for the caching of browserslist results, otherwise dynamically installs browserslist and gets that list if no previous cache existed.

About

Test a user agent string against a list of browser targets and see if it matches.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published