Skip to content
View Kunoacc's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report Kunoacc

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
Kunoacc/README.md

Pinned Loading

  1. spectral spectral Public

    Test

    TypeScript

  2. howfastlib howfastlib Public

    The Rust library that powers the speed test capabilities of https://howfast.is. It's also available as a binary for console applications. Powered by SpeedTest

    Rust

  3. colors colors Public

    Vue 1

  4. This is a custom fetch/http implemen... This is a custom fetch/http implementation used in my projects. I prefer working with fetch vs Axios, so I build this to have a smoother experience with fetch. It's reusable, the base http function supports dependency injection, and the http verb methods all support callbacks. Written in Typescript
    1
    import { API_BASE_URL } from '@/constants'
    2
    
                  
    3
    export interface HttpResponse<T> extends Response {
    4
      parsedBody?: T
    5
    }