Skip to content
View KoenBrouwer's full-sized avatar

Block or report KoenBrouwer

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
KoenBrouwer/README.md

Hi there πŸ‘‹

I'm Koen Brouwer, making awesome stuff on the web.
🏑 Based in The Netherlands.

πŸ’¬ Ask me about anything. Happy to help!

πŸŒ™ I prefer dark mode.

Pinned Loading

  1. hsh hsh Public

    Lightweight log-level mapper β€” because sometimes you just need a little hsh.

    TypeScript

  2. catchbuddy catchbuddy Public

    Simplify error handling in JavaScript with a lightweight utility that organizes results and errors for both synchronous and asynchronous operations.

    TypeScript

  3. react-grapple react-grapple Public

    A collection of useful React hooks that I made.

    TypeScript

  4. Script that can be used in a pipelin... Script that can be used in a pipeline to ensure that it's been rebased onto master before merging.
    1
    import { execSync } from "child_process";
    2
    import gitlog from "gitlog";
    3
    
                  
    4
    const main = () => {
    5
        const getBase = () => execSync("git merge-base origin/master HEAD").toString().trim();