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

x8t

v1.1.2

Published

A utility for safely executing functions with customizable error handling.

Downloads

33

Readme

x8t

A utility for safely executing functions.

Installation

You can install x8t using npm or yarn:

npm install x8t
or
yarn add x8t

Usage

Basic Example

Here's a quick example of how to use x8t:

import x8t from "x8t";

// Named function for better logging
const successFunction = () => {
  return "Function executed successfully!";
};

// Function that throws an error
const errorFunction = () => {
  throw new Error("An error occurred!");
};

// Execute a successful function
const result = x8t(successFunction, {
  log: true,
});
console.log(result); // Output: "Function executed successfully!"

// Execute a function that throws an error
const result = x8t(errorFunction, {
  log: true,
});
console.log(result); // Output: "Error: An error occurred!"

With Asynchronous Functions

You can also use x8t with asynchronous functions:

const asyncFunction = async () => {
  return new Promise((resolve) =>
    setTimeout(() => resolve("Async function succeeded!"), 200)
  );
};

// Execute an asynchronous function
(async () => {
  const { result, error, executionTime } = await x8t(asyncFunction, {
    log: true,
  });
  console.log(result); // Output: "Async function succeeded!"
  console.log(executionTime); // Output: e.g., "200ms"
})();

Logging

You can enable logging to get details about function execution:

(async () => {
  await x8t(
    () => {
      throw new Error("API Error!");
    },
    { log: true }
  );
})();

When logging is enabled, you'll see messages like:

Function "anonymous function" execution failed with an execution time of 0.123ms

Features

x8t(fn: Function, options?: { log?: boolean })

  • fn: The function to be executed. It can be synchronous or asynchronous.
  • options: An optional object to customize the behavior of logging.
    • log: If set to true, logs function execution details.

Returns

  • A Promise that resolves to an object containing:
    • result: The result of the function execution.
    • error: The error object if the function throws an error, or null.
    • executionTime: The time taken for execution in milliseconds.

Contributing

Contributions are welcome! Please open an issue or submit a pull request for any improvements or bug fixes.

Author

Marvin Ronquillo (Your GitHub Profile)[https://github.com/mondejarmarron18]