npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

webpack2-sentry-plugin

v2.0.6

Published

Webpack plugin to upload source maps to Sentry

Downloads

8

Readme

Sentry plugin

npm version Build Status

A webpack plugin to upload source maps to Sentry. Forked to support hidden sourcemaps and more configurations.

Installation

Using npm:

$ npm install webpack2-sentry-plugin --save-dev

Using yarn:

$ yarn add webpack2-sentry-plugin --dev

Usage

  1. Configure Webpack to use the Plugin:

    var SentryPlugin = require('webpack2-sentry-plugin');
    
    var config = {
      devtool: 'source-map', // Also possible: hidden-source-map
      plugins: [
        new SentryPlugin({
          // Sentry options are required
          organisation: 'your-organisation-name',
          project: 'your-project-name',
          apiKey: process.env.SENTRY_API_KEY,
    
          // Release version name/hash is required
          release: function() {
            return process.env.GIT_SHA
          },
          // custom options, like refs to send to sentry
          body: {
            refs: [{
              repository: 'project-repo',
              commit: process.env.GIT_SHA
            }]
          }
        })
      ]
    }

Recommended reading for sourcemaps: webpack docs, Sentry docs. If you are using the uglify plugin make sure that it is configured with sourcemaps: true

Options

  • exclude: RegExp to match for excluded files

    var config = {
      plugins: [
        new SentryPlugin({
          // Exclude uploading of html
          exclude: /\.html$/,
          ...
        })
      ]
    }
  • include: RegExp to match for included files

    var config = {
      plugins: [
        new SentryPlugin({
          // Only upload foo.js & foo.js.map
          include: /foo.js/,
          ...
        })
      ]
    }
  • filenameTransform: Function to transform filename before uploading to Sentry. Defaults to prefixing filename with ~/, which is used by Sentry as a host wildcard

    var config = {
      plugins: [
        new SentryPlugin({
          filenameTransform: function(filename) {
            return 'a-filename-prefix-' + filename
          }
        })
      ]
    }
  • release: Release name to attach source maps to. Can be string or function that returns a string. If a function is passed, it will receive the build hash as an argument

var config = {
  plugins: [
    new SentryPlugin({
      release: function(hash) {
        return hash
      }
    })
  ]
}
  • suppressErrors: Display warnings instead of failing webpack build - useful in case webpack compilation is done during deploy on multiple instances

  • baseSentryURL: URL of Sentry instance. Shouldn't need to set if using sentry.io, but useful if self hosting

  • organisation: Sentry organisation to upload files to

  • project: Sentry project to upload files to

  • apiKey: Sentry api key (Generate one here)

  • body: custom body attributes to send to sentry. See https://docs.sentry.io/learn/releases for details.

Thanks

Contributing

Contributions are welcome 😄. To run the tests, please ensure you have the relevant environment variables set up. You can cp .env.example .env and fill it in with test account credentials. An API key can be created here, assuming you are signed in.

Commands to be aware of

Warning ⚠️: The test suite will create releases & upload files on Sentry. They should be cleaned up afterward, but ensure that you are not overwriting something important!

  • npm test: Runs the test suite
  • npm run build: Compiles distribution build

Differences to original version

This plugin determines which sourcemap maps to which file and passes this information on to Sentry. That way you can freely rename sourcemaps. Support for devtool: hidden-sourcemap was also added.