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

noex

v1.3.0

Published

Golang style error handling for Functions, Promises and Thenables.

Downloads

16

Readme

noex

Golang style error handling for Functions, Promises and Thenables.

Install

Using npm:

$ npm install noex

Using yarn:

$ yarn add noex

Usage

// ESM
import { noex } from 'noex'
// CJS
const { noex } = require('noex')

Resolve a Promise:

// as a "tuple"
const [ file, fileError ] = await noex(fs.promises.readFile('someFile'))
// as a "named tuple"
const { value, error } = await noex(fs.promises.readFile('someFile'))

Call a Function:

// as a "tuple"
const [ json, jsonError ] = noex(() => JSON.parse('{"success": true}'))
// as a "named tuple"
const { value, error } = noex(() => JSON.parse('{"success": true}'))

Example

router.get('/api/resource/:id', async (req, res) => {
    const [ resource, resourceErr ] = await noex(
        resourceService.findById(req.params.id)
    )

    // database error
    if (resourceErr) {
        logger.error(resourceErr)
        return res.sendStatus(500)
    }

    // resource not found
    if (! resource) {
        return res.sendStatus(404)
    }

    return res.json(resource)
})

API

noex(predicate: Promise<any>): Promise<Result<any, Error>>

Run a function in a try-catch block and return the result.

const [ content, error ] = await noex(
    fs.promises.readFile('path/to/file')
)

noex(predicate: Function): Result<any, Error>

Run a promise or thenable in a try-catch block and return the result.

const [ json, error ] = noex(function () {
    return JSON.parse('{ "identity": "Bourne" }')
})

noex(predicate: Array<Promise<any>|Function>): Promise<Array<Result<any, Error>>>

Run a series of functions, promises and/or thenables and return their results.

const [ res1, res2 ] = await noex([
    () => JSON.parse('{ "identity": "Bourne" }'),
    fs.promises.readFile('path/to/file')
])

noex.wrap(fn: (...args: any[]) => Promise<any>): (...args: any[]) => Promise<Result<any, Error>>

Wrap a function that returns a promise with noex.

const readFile = noex.wrap(function (file) {
    return fs.promises.readFile(file)
})

const [ content, error ] = await readfile('path/to/file')

noex.wrap(fn: (...args: any[]) => any): (...args: any[]) => Result<any, Error>

Wrap a function with noex.

const parseJson = noex.wrap(JSON.parse)

const [ json, error ] = parseJson('{ "identity": "Bourne" }')

noex.chain(predicates: Array<(...args: any[]) => any>): Promise<Result<any, Error>>

Run the given predicates in sequence, passing the result of each predicate to the next one in the list.

 const [ val, err ] = await noex([
    ()  => JSON.parse('{ "identity": "Bourne" }'),
    json => json.identity.toUpperCase(),
 ])
 console.log(val) //=> "BOURNE"

Result<any, Error>: Array<any>

The object to hold the resulting value or error of a function, promise or thenable.

Properties:

  • value (any) : The resulting value of a function, promise or thenable.
  • val (any) : Same as value.
  • error (Error) : The error caught by the try-catch block.
  • err (Error) : Same as error.

License

This project is open-sourced software licensed under the MIT license.