Test a user agent string against a list of browser targets and see if it matches.
Dynamically pulls the latest browser versions using a targets query and saves it in Google Cloud Storage for fast retrieval later on.
Query Params
targetBrowsers- Optional. Comma separated string, e.g.last 2 versions, not ie. Defaults tolast 2 versions, not dead. See https://github.com/browserslist/browserslist#full-list for options that can be used.userAgent- Optional. The user agent string, if not specified then pulled from headeruser-agent.
Results (JSON)
- Object
targets- Array of targets matched againstmatchesTargets- Boolean, if the tested user agent string matched the targets.userAgent- String, the user agent that was tested against the targets.
Pull the list used for a given target query from teh cache.
Query Params
targetBrowsers- Optional. Comma separated string, e.g.last 2 versions, not ie. Defaults tolast 2 versions, not dead. See https://github.com/browserslist/browserslist#full-list for options that can be used.
Results (JSON)
- Object
list- Array of browsers with their versions as stringsupdated- String, date when list was updated
Call this via a cron job (see cron.yaml) to update existing browser lists.
Note: Using
GETbecause Google Cron jobs don't support setting a method.
Deploy via npm run deploy:jobs and edit in cron.yaml.
Updates the cache (stored in GCS) every 24 hours by default.
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.