JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 34183
  • Score
    100M100P100Q159180F
  • License MIT

Webpack plugin to automatically display an error overlay in your application.

Package Exports

  • error-overlay-webpack-plugin

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (error-overlay-webpack-plugin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Error Overlay Webpack Plugin

Build Status version MIT License

Catch errors with style 💥✨

This plugin display an error overlay in your application, it is the same error overlay used in create-react-app.

  • 📦 Webpack 4 support
  • 🥞 Elegant stack trace
  • 📝 Click to open error line in editor
Error Overlay Webpack Plugin Example
npm install error-overlay-webpack-plugin

Usage

// webpack.config.js
const ErrorOverlayPlugin = require('webpack-error-overlay-plugin')

module.exports = {
  entry: 'main.js',
  output: {
    path: __dirname + '/dist',
    filename: 'bundle.js',
  },
  plugins: [new ErrorOverlayPlugin()],
}

License

MIT