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

angular-error-handler

v1.0.0

Published

A centralize generic error handler for promises in Angular.

Downloads

2

Readme

Angular Error Handler

A centralize generic error handler for promises in Angular.

Getting Started

  1. Go to your project directory using your command line tool then install the project using npm.
npm install angular-error-handler
  1. Include angular.js and angular-error-handler.js to your index page.
<script type="text/javascript" src="angular.js"></script>
<script type="text/javascript" src="angular-error-handler.js"></script>
  1. Add the ngErrorHandler module to you application.
angular.module('myApp', ['ngErrorHandler']);
  1. You can now use the 'errorHandlerProvider' to automatically handle the errors of your services.
angular.module('myApp').config(function ($provide, errorHandlerProvider) {
  errorHandlerProvider.handle($provide, ['myService', 'myAnotherService']);
});
  1. You can also set specific functions that you want to manually handle the error.
angular.module('myApp').config(function ($provide, errorHandlerProvider) {
  errorHandlerProvider.handle($provide, {
    'myService': ['dontHandleErrorsInThisFunction', 'thisFunctionToo'],
    'myAnotherService': ['meToo']
  });
});
  1. By default, logging is enabled in errorHandler, you can disable it using the code below.
angular.module('myApp').config(function (errorHandlerProvider) {
  errorHandlerProvider.debugEnabled(false);
});

How to use

A simple usage would be is to listen to errors using the errorNotifier service. Every service functions that is automatically handled by ngErrorHandler that caused errors will appear here. So it's up to you to do anything that you want with the error.

angular.module('myApp').run(function (errorNotifier) {
  errorNotifier.on(function (error) {
    // Do something with the error
  });
});

API Documentation

errorHandlerProvider.handle($provide, services);

This method sets up all the error handler for your service. Parameters:

  • $provide - The default $provide service of angular
  • services - Array or string services or an object that contains the service name as key, and array of string methods as value that you want to manually handle the error
errorHandlerProvider.debugEnabled(enable);

This method accepts a boolean that enable or disable the logging of ngErrorHandler module.

errorNotifier.on(function callback(error) {
  // Do something with the error
});

This method accepts a callback that contains the error as a parameter and will be triggered if there's an error that occured to the functions that is automatically handled by ngErrorHandler.

License

This project is licensed under the MIT License - see the LICENSE file for details

TODO

  • Unit tests
  • Support for catching exceptions that allows to either halt or continue execution