All Projects → lettertwo → Appcache Webpack Plugin

lettertwo / Appcache Webpack Plugin

Generate an HTML5 Application Cache for a Webpack build

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Appcache Webpack Plugin

React Node Example
a minimalist starter repo for React and Node to deploy to heroku
Stars: ✭ 197 (-1.99%)
Mutual labels:  webpack
Brotli Webpack Plugin
Prepare Brotli-compressed versions of assets to serve them with Content-Encoding: br
Stars: ✭ 198 (-1.49%)
Mutual labels:  webpack
Webpackbin
[Deprecated]. Please move to codesandbox.io.
Stars: ✭ 200 (-0.5%)
Mutual labels:  webpack
Webpack Dev Middleware
A development middleware for webpack
Stars: ✭ 2,336 (+1062.19%)
Mutual labels:  webpack
Vue Backage
基于vue和iview的后台管理系统
Stars: ✭ 198 (-1.49%)
Mutual labels:  webpack
Webpack Nano
A teensy, squeaky 🐤 clean Webpack CLI
Stars: ✭ 199 (-1%)
Mutual labels:  webpack
Feathers Vue
A boiler plate template using Feathers with Email Verification, Vue 2 with Server Side Rendering, stylus, scss, jade, babel, webpack, ES 6-8, login form, user authorization, and SEO
Stars: ✭ 195 (-2.99%)
Mutual labels:  webpack
Webpacker React
Webpacker plugin to integrate React in your Rails application
Stars: ✭ 201 (+0%)
Mutual labels:  webpack
Bundle Buddy Webpack Plugin
🐐🐐🐐🐐 bundle-buddy-webpack-plugin 🐐🐐🐐🐐
Stars: ✭ 199 (-1%)
Mutual labels:  webpack
Website
Techqueria is a nonprofit the serves the largest community of Latinx in Tech
Stars: ✭ 200 (-0.5%)
Mutual labels:  webpack
Django Webpack Loader
Transparently use webpack with django
Stars: ✭ 2,327 (+1057.71%)
Mutual labels:  webpack
Styled React Boilerplate
Minimal & Modern boilerplate for building apps with React & styled-components
Stars: ✭ 198 (-1.49%)
Mutual labels:  webpack
Gulp Webpack Starter
Gulp Webpack Starter - fast static website builder. The starter uses gulp toolkit and webpack bundler. Download to get an awesome development experience!
Stars: ✭ 199 (-1%)
Mutual labels:  webpack
Webpack Hot Middleware
Webpack hot reloading you can attach to your own server
Stars: ✭ 2,279 (+1033.83%)
Mutual labels:  webpack
Webpack Static Html Pages
Webpack template/example with multiple static html pages
Stars: ✭ 202 (+0.5%)
Mutual labels:  webpack
100 Days Of Code Frontend
Curriculum for learning front-end development during #100DaysOfCode.
Stars: ✭ 2,419 (+1103.48%)
Mutual labels:  webpack
Jamstack Web Starter
Static website workflow utilising Eleventy, Tailwind CSS, Webpack and PostCSS.
Stars: ✭ 198 (-1.49%)
Mutual labels:  webpack
Vuesion
Vuesion is a boilerplate that helps product teams build faster than ever with fewer headaches and modern best practices across engineering & design.
Stars: ✭ 2,510 (+1148.76%)
Mutual labels:  webpack
Vue Web Cam
Webcam component for VueJs.
Stars: ✭ 201 (+0%)
Mutual labels:  webpack
Koa Web Kit
🚀A Modern, Production-Ready, and Full-Stack Node Web Framework with React
Stars: ✭ 199 (-1%)
Mutual labels:  webpack

Application Cache plugin for Webpack

Usage

var AppCachePlugin = require('appcache-webpack-plugin');

module.exports = {
  plugins: [
    new AppCachePlugin({
      cache: ['someOtherAsset.jpg'],
      network: null,  // No network access allowed!
      fallback: ['failwhale.jpg'],
      settings: ['prefer-online'],
      exclude: ['file.txt', /.*\.js$/],  // Exclude file.txt and all .js files
      output: 'my-manifest.appcache'
    })
  ]
}

Arguments:

  • cache: An array of additional assets to cache.
  • network: An array of assets that may be accessed via the network. Defaults to ['*'].
  • fallback: An array of fallback assets.
  • settings: An array of settings.
  • exclude: An array of strings or regex patterns. Assets in the compilation that match any of these patterns will be excluded from the manifest.
  • output: The filename to write the appcache to

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].