
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
ember-cli-browser-update
Advanced tools
An ember-cli addon to work with browserupdate.org and warn users with out of date browsers.
This README outlines the details of collaborating on this Ember addon.
This project is an ember-cli addon for the Browser Update project.
It warns the user with a small header bar that their browser is out of date and needs to be upgraded.
You can use this to ensure that users do not experience missing functionality in your app because their browser does not support something that your code requires.
You can customise the warning message to inform users about the degradation they will experience if they do not update.
You can choose your minimum browser specs amongst other things.
By default the minimum recommended browser is:
If you are using CSP you must add browser-update.org as a script-src and img-src:
Content-Security-Policy: script-src 'self' browser-update.org; img-src 'self' browser-update.org;
Add a browserUpdate object to your environment:
var ENV = {
browserUpdate: {
vs: {i:9,f:2,o:9.63,s:2,c:10},
test: true
},
... // rest of environment
This config object is passed to browser-update as its buoop variable. Full documentation can be found at Browser-Update.
The test: true parameter always shows the header bar regardless of the browser - useful for testing.
Default values set up in the service are:
browserUpdate: {
vs: {i:9,f:2,o:9.63,s:2,c:10}
}
The onshow, onclick and onclose browser-update.org callbacks are hooked by the browser-update service and are exposed as events show, click and close.
npm install --save-dev ember-cli-browser-update
ember testember test --serverember buildFor more information on using ember-cli, visit http://www.ember-cli.com/.
FAQs
An ember-cli addon to work with browserupdate.org and warn users with out of date browsers.
The npm package ember-cli-browser-update receives a total of 2 weekly downloads. As such, ember-cli-browser-update popularity was classified as not popular.
We found that ember-cli-browser-update demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.