Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Serverless Offline | 4,869 | 1,306 | 368 | 7 days ago | 351 | September 23, 2022 | 87 | mit | JavaScript | |
Emulate AWS Ī» and API Gateway locally when developing your Serverless project | ||||||||||
Offline Plugin | 4,442 | 3,271 | 569 | a year ago | 74 | May 03, 2019 | 109 | mit | JavaScript | |
Offline plugin (ServiceWorker, AppCache) for webpack (https://webpack.js.org/) | ||||||||||
Sw Precache Webpack Plugin | 1,433 | 45,089 | 2,613 | 3 years ago | 32 | January 25, 2020 | 25 | mit | JavaScript | |
Webpack plugin that generates a service worker using sw-precache that will cache webpack's bundles' emitted assets. You can optionally pass sw-precache configuration options to webpack through this plugin. | ||||||||||
Fastlogin | 382 | 12 hours ago | 135 | mit | Java | |||||
Checks if a minecraft player has a valid paid account. If so, they can skip offline authentication automatically. (premium auto login) | ||||||||||
Super Progressive Web Apps | 347 | 20 days ago | 84 | gpl-2.0 | PHP | |||||
SuperPWA helps to convert your WordPress website into Progressive Web Apps instantly. PWA (Progressive Web Apps) demo at : https://superpwa.com and Plugin : | ||||||||||
Docusaurus Search Local | 317 | 25 days ago | 31 | June 12, 2022 | 21 | mit | JavaScript | |||
Offline / Local Search for Docusaurus v2. Try it live at: | ||||||||||
Hibpofflinecheck | 267 | 3 months ago | 2 | other | C# | |||||
Keepass plugin that performs offline and online checks against HaveIBeenPwned passwords | ||||||||||
Grunt Maven Plugin | 218 | 7 years ago | 20 | June 24, 2015 | 23 | other | Java | |||
Grunt + Maven integration done right | ||||||||||
Regipy | 214 | 4 | a month ago | 71 | June 29, 2022 | 3 | mit | Python | ||
Regipy is an os independent python library for parsing offline registry hives | ||||||||||
Serverless S3 Local | 186 | 17 | 4 | 5 days ago | 74 | December 14, 2022 | 42 | mit | JavaScript | |
Serverless s3 local plugin. |
This plugin is intended to provide an offline experience for webpack projects. It uses ServiceWorker, and AppCache as a fallback under the hood. Simply include this plugin in your webpack.config
, and the accompanying runtime in your client script, and your project will become offline ready by caching all (or some) of the webpack output assets.
Become a sponsor and get your logo on our README on Github with a link to your site.
Become a sponsor
npm install offline-plugin [--save-dev]
First, instantiate the plugin in your webpack.config
:
// webpack.config.js example
var OfflinePlugin = require('offline-plugin');
module.exports = {
// ...
plugins: [
// ... other plugins
// it's always better if OfflinePlugin is the last plugin added
new OfflinePlugin()
]
// ...
}
(and optionally configure with options)
Then, add the runtime into your entry file (typically main entry):
require('offline-plugin/runtime').install();
ES6/Babel/TypeScript
import * as OfflinePluginRuntime from 'offline-plugin/runtime';
OfflinePluginRuntime.install();
For more details of usage with
TypeScript
see here
offline-plugin
isn't working?ā¹ļø Troubleshooting | FAQ
All options are optional and offline-plugin
can be used without specifying them.
offline-plugin
offline-plugin
PWAIf you are using offline-plugin
, feel free to submit a PR to add your project to this list.
offline-plugin
?Support it by giving feedback, contributing, becoming a backer/sponsor or just by š starring the project!
Support us with a monthly donation and help us continue our activities. [Become a backer]
See CONTRIBUTING