Giter VIP home page Giter VIP logo

awesome-catch-decorator's Introduction

Awesome @Catch Decorator

$ npm install awesome-catch-decorator

Signature

Catch(ErrorType: Error, handler: (e) => any)

handler result value will replace method's return if exception is raised.

Usage

import Catch from "awesome-catch-decorator"

class AnyES6Class {
  @Catch(SyntaxError, () => ({}))
  static parseResponse(unvalidatedInputValue) {
    return JSON.parse(unvalidatedInputValue)
  }
}

// will always return an object
AnyES6Class.parseResponse()
AnyES6Class.parseResponse(",,,s,ds,sd,")
AnyES6Class.parseResponse('{ "message": "Okay, I get it" }')

I just want to catch all errors!

import Catch from "awesome-catch-decorator"

// create a new decorator
const CatchAll = Catch(Error, e => console.warn("catched exception: ", e))

class Dummy {
  @CatchAll
  doSomething() {
    undefinedFunction();
  }
}

// no exception will be raised

I just want to catch errors and trigger different actions for each one!

import Catch from "awesome-catch-decorator"

import { CustomError1, CustomError2 } from "./my-errors"

class VerySeriousClass {

  @Catch(CustomError1, handleError1)
  @Catch(CustomError2, handleError2)
  async fetch() {
    await this.mayThrowCustomError1();
    await this.mayRejectCustomError2();
    await this.mayThrowAnyError();
  }
}

code above do the following:

  • if mayThrowCustomError1 throws a CustomError1, then handleError1 will be executed

  • if mayRejectCustomError2 returns a promise which rejects with CustomError2, then handleError2 will be executed

  • if another kind of exception is raised, lets say a TypeError, then exception will be thrown.

How

This library was easily made with kaop-ts which provides hooks to attach behaviors on ES6 classes.

Credits

@lukeed for improving the initial idea.

awesome-catch-decorator's People

Contributors

k1r0s avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.