0.1.13 • Published 10 months ago

babel-plugin-catch-logger v0.1.13

Weekly downloads
-
License
ISC
Repository
github
Last release
10 months ago

babel-plugin-catch-logger

A babel plugin that:

  1. Add catch clause to your Promise if you forget to do so.
  2. Add a logger to all catch clauses, whether it's a catch block or a promise .catch() function call.
  3. Automatically import the logging service when needed.

Config:

  • name: string - The name of the your logging service.
  • source: string - The import path name of your logging service.
  • methodName: string - Which logging method to invoke.
  • catchPromise: boolean - Whether to catch promises.
  • namespaced: boolean - Whether to import the logging service as a namespace module.

Demo

.babelrc.json

{
    "plugins": [
        [
            "babel-plugin-catch-logger",
            {
                "name": "Sentry",
                "source": "@sentry/node",
                "methodName": "captureException",
                "catchPromise": true,
                "namespaced": true
            }
        ]
    ]
}

src/foo.js

export function noop() {
    try {
        return nonexistent
    } catch (ignore) {
        // console.log(ignore);
    }
}

export function bar() {
    return fetch('https://google.com').json().then(console.log)
}

export function baz() {
    return fetch('https://google.com')
        .json()
        .then(console.log)
        .catch((e) => {
            console.error(e)
        })
}

gets compiled to:

import * as Sentry from '@sentry/node'
export function noop() {
    try {
        return nonexistent
    } catch (ignore) {
        // console.log(ignore);

        Sentry.captureException(ignore)
    }
}
export function bar() {
    return fetch('https://google.com')
        .json()
        .then(console.log)
        .catch(function (_e) {
            Sentry.captureException(_e)
        })
}
export function baz() {
    return fetch('https://google.com')
        .json()
        .then(console.log)
        .catch((e) => {
            Sentry.captureException(e)
            console.error(e)
        })
}

src/bar.js

fetch().json().then(console.log)

gets compiled to:

import * as Sentry from '@sentry/node'
fetch()
    .json()
    .then(console.log)
    .catch(function (_e) {
        Sentry.captureException(_e)
    })
0.1.13

10 months ago

0.1.12

10 months ago

0.1.11

10 months ago

0.1.10

10 months ago

0.1.9

10 months ago

0.1.8

10 months ago

0.1.7

10 months ago

0.1.6

10 months ago

0.1.5

10 months ago

0.1.4

10 months ago