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

use-error-sender

v1.0.0

Published

this hook uses for sends errors to a url that gets as an argument. this hook send two kind of errors: - errors you handle them your self. use **sendError** method that returns from hook to send these errors. - errors you don't handle them and maybe fires

Downloads

1

Readme

Description:

this hook uses for sends errors to a url that gets as an argument. this hook send two kind of errors:

  • errors you handle them your self. use sendError method that returns from hook to send these errors.
  • errors you don't handle them and maybe fires unexpectedly.

How to use:

1- First need to install the package:

npm install use-error-sender

2- Then import the hook in every component you need and call it with the needed arguments. then use the returned method of it to send errors to server to save them.

import useErrorSender from "use-error-sender";

const App = () => {
    const url = "http://localhost:3001/api/catchError";
    const sendError = useErrorSender(url);

    useEffect(() => {
        try{
            throw new Error("error sender test");
        }
        catch(err){
            sendError(err);
        }
    }, []);
};

the sendError method gets an object(error object) and send it to the given url. you can add your custom properties to this object and useErrorSender hook sends all of them. for example

import useErrorSender from "use-error-sender";

const App = () => {
    const url = "http://localhost:3001/api/catchError";
    const sendError = useErrorSender(url);

    useEffect(() => {
        try{
            throw new Error("error sender test");
        }
        catch(err){
            //add custom properties to error object 
            err.fileName = "App.js";
            err.details = "this error happend in app.js and it is for test";

            sendError(err);
        }
    }, []);
};

How it works?

this hook uses for two kind of errors:

  • errors that you handle them yourself:
    • you catch these errors your self in some try catches. you can use returned method from the hook to send them to the api you want. you can add custom properties to the error object.
  • errors that you don't handle them:
    • some errors happend unexpectedly. if you use this hook, a call back function add to the onerror event of the global window object. so when this kind of errors fires, the hook sends them to your api as well.

API:

const sendError = useErrorSender(url);

Arguments:

  • url: api that you want send errors to it.

return value:

  • sendError: a method that you can use it to send errors to the api using hook.

Errors:

  • url is invalid: if use the hook with no url pass in as argument, this error fires.
  • network error or url is invalid: if invalid url pass to the hook or some thing happend that cause problem in send data to the given url, this error fires.

Contact me: