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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@moca-labs/axios-kit-ts

v0.3.0

Published

Axios 기반 TypeScript API 클라이언트 Kit - 데코레이터 기반 HTTP 요청 관리

Readme

@moca-labs/axios-kit-ts

Axios 기반 TypeScript API 클라이언트 라이브러리입니다.
데코레이터로 HTTP 메서드, 파라미터, 응답 핸들러를 선언적으로 정의합니다.

설치

npm install @moca-labs/axios-kit-ts @moca-labs/entity-kit-ts axios

tsconfig.json에 다음 옵션이 필요합니다.

{
  "compilerOptions": {
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true
  }
}

Import

import McAxios from "@moca-labs/axios-kit-ts";
import McEntity from "@moca-labs/entity-kit-ts";

특징

extends McAxios — API 클라이언트 베이스 클래스

모든 API 클라이언트는 McAxios를 상속받아 구현합니다.
header() 메서드를 통해 공통 헤더를 반환할 수 있습니다.

class UserApi extends McAxios {
  protected header(): AxiosHeaders | undefined {
    return new AxiosHeaders({ Authorization: `Bearer ${token}` });
  }
}

@McAxios.GET/POST/PUT/DELETE/PATCH(url, ResponseType) — HTTP 메서드

메서드 데코레이터로 URL과 응답 타입을 지정합니다.
응답은 자동으로 ResponseType 인스턴스로 변환됩니다.

@McAxios.GET("/users/{id}", UserResponse)
getUser(@McAxios.PATH id: string): Promise<UserResponse> { return this.stub(); }

@McAxios.POST("/users", UserResponse)
createUser(@McAxios.REQUEST req: CreateUserRequest): Promise<UserResponse> { return this.stub(); }

stub() — 메서드 바디 플레이스홀더

데코레이터가 런타임에 메서드를 자동으로 교체하므로, 바디는 return this.stub()으로 작성합니다.
바인딩 전 호출 시 명확한 오류 메시지를 반환합니다.

@McAxios.REQUEST / @McAxios.FORM_DATA — 바디 파라미터

@McAxios.POST("/upload", UploadResponse)
upload(@McAxios.FORM_DATA formData: FormData): Promise<UploadResponse> { return this.stub(); }

@McAxios.PATH('key') / @McAxios.HEADER('key') — 경로/헤더 파라미터

키를 생략하면 파라미터명을 자동 추론합니다.

@McAxios.GET("/users/{id}/posts/{postId}", PostResponse)
getPost(
  @McAxios.PATH id: string,
  @McAxios.PATH("postId") pid: string,
  @McAxios.HEADER("X-Lang") lang: string,
): Promise<PostResponse> { return this.stub(); }

@McAxios.SUCCESS(fn) / @McAxios.ERROR(fn) — 응답 핸들러

인라인 함수 또는 Symbol 기반 메서드를 지정합니다.

static readonly ON_SUCCESS = Symbol("onSuccess");
static readonly ON_ERROR = Symbol("onError");

@McAxios.GET("/users", UserListResponse)
@McAxios.SUCCESS(UserApi.ON_SUCCESS)
@McAxios.ERROR(UserApi.ON_ERROR)
getUsers(): Promise<UserListResponse> { return this.stub(); }

@McAxios.SUCCESS_HANDLER(UserApi.ON_SUCCESS)
private async handleSuccess(response: AxiosResponse, retry: () => Promise<any>) {
  return response.data;
}

@McAxios.ERROR_HANDLER(UserApi.ON_ERROR)
private async handleError(error: any, retry: () => Promise<any>) {
  console.error(error);
}

extends McAxios.Request — 요청 바디 클래스

@McAxios.REQUEST로 전달되는 객체는 McAxios.Request를 상속받아야 합니다.
@McEntity.SERIALIZE로 마킹된 필드만 직렬화되어 전송됩니다.

extends McAxios.Response — 응답 클래스

@McEntity.ENTITY / @McEntity.FIELD로 JSON 자동 매핑을 구성합니다.


예제

import McAxios from "@moca-labs/axios-kit-ts";
import McEntity from "@moca-labs/entity-kit-ts";
import { AxiosHeaders } from "axios";

// 요청 클래스
class CreateUserRequest extends McAxios.Request {
  @McEntity.SERIALIZE("user_name")
  userName: string;

  @McEntity.SERIALIZE
  age: number;

  constructor(userName: string, age: number) {
    super();
    this.userName = userName;
    this.age = age;
  }
}

// 응답 클래스
@McEntity.ENTITY
class UserResponse extends McAxios.Response {
  @McEntity.FIELD(String, "user_name")
  userName: string;

  @McEntity.FIELD(Number)
  age: number;
}

// API 클라이언트
class UserApi extends McAxios {
  protected header(): AxiosHeaders | undefined {
    return new AxiosHeaders({ Authorization: "Bearer my-token" });
  }

  @McAxios.GET("/users/{id}", UserResponse)
  getUser(@McAxios.PATH id: string): Promise<UserResponse> {
    return this.stub();
  }

  @McAxios.POST("/users", UserResponse)
  createUser(@McAxios.REQUEST req: CreateUserRequest): Promise<UserResponse> {
    return this.stub();
  }
}

// 사용
const api = new UserApi();

const user = await api.getUser("123");
console.log(user.userName);

const newUser = await api.createUser(new CreateUserRequest("Alice", 30));
console.log(newUser.userName);