
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
Using npm:
$ npm install wtm-api
Using yarn:
$ yarn add wtm-api
import {
getWtmData,
getWtmCategoryData,
getWtmSearchData,
createWtmData,
WtmListType,
CategoryItems,
CategoryColors,
} from "wtm-api";
모든데이터 조회
장르, 카테고리 조회
검색데이터 조회
데이터 세부사항 조회
데이터 생성
{
tag: "영화",
title: "너와 나",
thumbnailUrl: "imgUrl.jpg",
category: ['로맨스'],
described: '“오늘은 너한테 꼭 하고 싶은 말이 있는데”
수학여행을 하루 앞둔 오후, 세미는 이상한 꿈에서 깨어나 하은에게로 향한다. 오랫동안 눌러왔던 마음을 오늘은 반드시 전해야 할 것 같은 기분이 들었기 때문이다.
하지만 넘쳐 흐르는 마음과 달리 자꾸만 어긋나는 두 사람. 서툰 오해와 상처를 뒤로하고, 세미는 하은에게 진심을 고백할 수 있을까?',
grade: "5",
famousLine: "사랑해, 사랑해, 사랑해",
recommended: true,
startDate: "Wed Jan 25 2017 16:00:00 GMT-0800",
endDate: null,
ost: "https://open.spotify.com/track/6HgeeiHqVpxxFCB0bjBRT6?si=3aeb768d866c467c",
trailer: "https://www.youtube.com/watch?v=CT68pb1ptuY&t=4s",
watchaPedia: "https://pedia.watcha.com/ko-KR/contents/mdREZrD",
}
import { WtmListType } from "wtm-api";
export interface WtmListType {
title: string;
described: string;
thumbnailUrl: string;
tag: "영화" | "드라마" | "예능" | "전체";
category: string[];
grade: string;
recommended: boolean;
famousLine: string;
startDate: Date | string;
endDate?: Date;
ost: string;
trailer: string;
watchaPedia: string;
}
import { Colors, CategoryColors } from "wtm-api";
export const Colors: Record<string, string> = {
red: "#FF7D7D",
purple: "#55155d",
pink: "#982E81",
gray: "#818198",
orange: "#EE786D",
blue: "#5966E9",
yellow: "#eff4af",
green: "#7eb293",
shallowGray: "#d4d4dc",
brown: "#a95e13",
};
export const CategoryColors = {
휴먼: Colors.orange,
로맨스: Colors.purple,
액션: Colors.red,
판타지: Colors.blue,
범죄: Colors.gray,
스릴러: Colors.brown,
미스터리: Colors.shallowGray,
코미디: Colors.pink,
느와르: Colors.shallowGray,
서바이벌: Colors.red,
호러: Colors.yellow,
SF: Colors.green,
};
export Count CategoryItems =
휴먼
로맨스: 우원해, 빨렷들
액션: red,
판타지: blue,
범죄: gray,
스릴러: brown,
미스터리: shallowGray,
코미디: pink,
느와르: shallowGray,
서바이벌: red,
호러: yellow,
SF: green,
FAQs
wtm api
We found that wtm-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.