All Projects → edm00se → parcel-plugin-goodie-bag

edm00se / parcel-plugin-goodie-bag

Licence: other
provides the Promise and fetch goodies needed for IE(11) support w/ parcel bundle loading

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to parcel-plugin-goodie-bag

Fetch
A window.fetch JavaScript polyfill.
Stars: ✭ 25,118 (+167353.33%)
Mutual labels:  polyfill, fetch, promise
Ts Polyfill
Runtime polyfills for TypeScript libs, powered by core-js! 🔋 🔩
Stars: ✭ 122 (+713.33%)
Mutual labels:  polyfill, promise
Unfetch
🐕 Bare minimum 500b fetch polyfill.
Stars: ✭ 5,239 (+34826.67%)
Mutual labels:  polyfill, fetch
Object Fit Images
🗻 Polyfill object-fit/object-position on <img>: IE9, IE10, IE11, Edge, Safari, ...
Stars: ✭ 2,050 (+13566.67%)
Mutual labels:  polyfill, ie
webpack2-polyfill-plugin
Insert polyfills (such as Promise) for Webpack 2
Stars: ✭ 18 (+20%)
Mutual labels:  polyfill, promise
Abortcontroller Polyfill
Polyfill for the AbortController DOM API and abortable fetch (stub that calls catch, doesn't actually abort request).
Stars: ✭ 273 (+1720%)
Mutual labels:  polyfill, fetch
Es6 Promise Polyfill
ES6 Promise polyfill
Stars: ✭ 99 (+560%)
Mutual labels:  polyfill, promise
Fetch
Asynchronous HTTP client with promises.
Stars: ✭ 29 (+93.33%)
Mutual labels:  fetch, promise
fetchye
✨ If you know how to use Fetch, you know how to use Fetchye [fetch-yae]. Simple React Hooks, Centralized Cache, Infinitely Extensible.
Stars: ✭ 36 (+140%)
Mutual labels:  fetch, promise
Core Js
Standard Library
Stars: ✭ 15,854 (+105593.33%)
Mutual labels:  polyfill, promise
fetch
A fetch API polyfill for React Native with text streaming support.
Stars: ✭ 27 (+80%)
Mutual labels:  polyfill, fetch
miniprogram-network
Redefine the Network API of Wechat MiniProgram (小程序网络库)
Stars: ✭ 93 (+520%)
Mutual labels:  fetch, promise
Wretch
A tiny wrapper built around fetch with an intuitive syntax. 🍬
Stars: ✭ 2,285 (+15133.33%)
Mutual labels:  fetch, promise
Promise Fun
Promise packages, patterns, chat, and tutorials
Stars: ✭ 3,779 (+25093.33%)
Mutual labels:  polyfill, promise
Mande
600 bytes convenient and modern wrapper around fetch
Stars: ✭ 154 (+926.67%)
Mutual labels:  fetch, promise
Vue2 Element
基于vue2 + vue-router2 + element-ui + vuex2 + fetch + webpack2 企业级后台管理系统最佳实践
Stars: ✭ 112 (+646.67%)
Mutual labels:  fetch, promise
Create Request
Apply interceptors to `fetch` and create a custom request function.
Stars: ✭ 34 (+126.67%)
Mutual labels:  fetch, promise
Mfetch
mfetch will provide you with a strong ability to request resource management
Stars: ✭ 90 (+500%)
Mutual labels:  fetch, promise
Tickedoff
Tiny library (<200B gzip) for deferring something by a "tick"
Stars: ✭ 213 (+1320%)
Mutual labels:  polyfill, promise
vue2-element
基于vue2 + vue-router2 + element-ui + vuex2 + fetch + webpack2 企业级后台管理系统最佳实践
Stars: ✭ 115 (+666.67%)
Mutual labels:  fetch, promise

Archived

Per issue #55, this repository is being archived.

parcel-plugin-goodie-bag

A polyfill for Promise and fetch for Parcel v1, to keep it working for those browsers without it.

Looking at you Internet Explorer.

Parcel v1 Only!

Why This Is Needed

TL;DR: multiple bundle support in Parcel, such as using the ability to require html partial files, makes direct use of both the Promise and fetch APIs, directly.

This plugin is born of my frustaration with the scenario outline in parcel issue #2364. This requires additional intervention, since the native requirement of the potentially un-polyfilled APIs is prior to any polyfill via babel-polyfill and isn't something that can be influenced inside the application source itself; at least not without convoluted efforts.

Installation

  • npm install --save-dev parcel-plugin-goodie-bag

Usage

No additional configuration required. If your app is being bundled by parcel and you have this plugin installed, the processed application will build with:

  • the *.html containing a script tag in its head pointing to the "goodie bag` script (the two polyfills)
  • a "goodie bag" script file, placed in the destination directory (outDir to parcel, defaults to dist)
  • the script tag will respect your configured publicUrl option with Parcel (e.g.- prefixed with default / or no root slash in the case of .)

Note: If you're not processing your index.html file through parcel, for example merely bundling the JS directly, I believe you're missing out on some of the super powers of parcel. However, if that's your workflow and you're missing out on this plugin's functionality, please consult the discussion and resolution outlined in this issue.

In Action

I made use of a simple reproducible repository I had set up for tracking this issue.

Before After
before after

Contributing

If you have something to contribute, please do. If you're uncertain as to whether or not to open a PR, feel free to ask; just open an issue and mark that it's a question.

Contributors

Thanks goes to these wonderful people (emoji key):

Eric McCormick
Eric McCormick

📝 🐛 💻 🖋 📖 💡 🤔 🚧 👀 📓
Joe Withey
Joe Withey

💻 🤔
Klaus Breyer
Klaus Breyer

🐛 🤔

This project follows the all-contributors specification. Contributions of any kind welcome!

History

Parcel is an amazing bundler with superpowers. The fact that my ability to support IE(11), a requirement for my day job, was hampered by this limitation of a multiple bundle scenario meant that I had to solve the problem myself. It is my hope that one day the configuration of Parcel will allow for the surfacing of base level APIs, such as Promise and fetch to make this plugin unnecessary. Until then, I'll keep this available to provide some sanity.

Credits

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].