Skip to content
View omarwaleed's full-sized avatar
Block or Report

Block or report omarwaleed

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. golb golb Public

    A loadbalancer written in go

    Go

  2. gromise gromise Public

    Go

  3. node-go node-go Public

    TypeScript

  4. with-defer with-defer Public

    TypeScript

  5. to-promise-or-not-to-promise to-promise-or-not-to-promise Public

    JavaScript

  6. Allows you to wrap your express asyn... Allows you to wrap your express async handlers in a way that removes the need to put all your function body handlers in a try catch phrase. Instead, if an error is thrown, it returns a default response from the server
    1
    import { Request, Response, NextFunction } from 'express';
    2
    
                  
    3
    type ExpressRouteFn<T> = (req: Request & Partial<T>, res: Response, next: NextFunction) => unknown;
    4
    
                  
    5
    export function wrapper<T = {}>(fn: ExpressRouteFn<T>): ExpressRouteFn<T> {