
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
ember-service-worker-index-fallback
Advanced tools
An Ember Service Worker plugin that serves an Ember app's index file and falls back to a cached version when loading fails
An Ember Service Worker plugin that serves an Ember app's index file and falls back to a cached version when loading fails
Turn on the "Update on reload" setting in the Application > Service Workers
menu in the Chrome devtools.
ember install ember-service-worker-index-fallback
The configuration is done in the ember-cli-build.js
file:
var EmberApp = require('ember-cli/lib/broccoli/ember-app');
module.exports = function(defaults) {
var app = new EmberApp(defaults, {
'esw-index': {
// Where the location of your index file is at, defaults to `index.html`
location: 'app-shell.html',
// time in milliseconds that fetching index.html from network may take before the cached version is served
requestTimeoutCached: 500,
// time in milliseconds that fetching index.html from network may take when no cached version is available
requestTimeoutUncached: 60000
// Bypass esw-index and don't serve cached index file for matching URLs
excludeScope: [/\/non-ember-app(\/.*)?$/, /\/another-app(\/.*)?$/],
// Leave blank serve index file for all URLs, otherwise ONLY URLs which match
// this pattern will be served the cached index file so you will need to list
// every route in your app.
includeScope: [/\/dashboard(\/.*)?$/, /\/admin(\/.*)?$/],
// Changing this version number will bust the cache, but you probably do not
// want to be doing this manually, but rather using `versionStrategy` as
// explained here http://ember-service-worker.com/documentation/configuration/#versioning
version: '1'
}
});
return app.toTree();
};
This addon has been forked from DockYards ember service worker index
This library follows Semantic Versioning
This project is licensed under the MIT License.
FAQs
An Ember Service Worker plugin that serves an Ember app's index file and falls back to a cached version when loading fails
The npm package ember-service-worker-index-fallback receives a total of 3 weekly downloads. As such, ember-service-worker-index-fallback popularity was classified as not popular.
We found that ember-service-worker-index-fallback 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.