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

@ohhi3368/zeta-illegally-use

v0.0.1

Published

A simple Node.js package to fetch data from Zeta, which is an AI role-playing platform.

Readme

Fetch Zeta's API

제타 API를 쌔벼와서 편하게 쓸 수 있게 바꿔준 라이브러리입니다 😂😂😂

필요한거

  • 인공 뇌 (CPU)
  • 치매 안걸리게 해주는 장치 (RAM)
  • 인터넷
  • NodeJS

이걸로 할 수 있는 짓거리들 (사용 가능한 기능들)

  • [x] fetchPlot(id) — 플롯 통째로 긁어오기 (토큰 없어도 공개 플롯은 됨)
  • [x] fetchMessages(roomId, { token, limit, cursor }) — 채팅방 메시지 한 페이지씩
  • [x] fetchAllMessages(roomId, { token }) — 커서 자동으로 타고 끝까지 전부
  • [x] 캐릭터 / 챗프로필 (plot.characters, plot.chatProfiles)
  • [x] 소개글 (plot.about, plot.description.short/long)
  • [x] 인트로 (plot.intros) — 텍스트 · 이미지 · 인포박스 다 분해됨
  • [x] 예시 대화 (plot.conversations)
  • [x] 로어북 + 항목별 키워드/내용 (plot.lorebooks)
  • [x] 제작자 정보 (plot.creator), 해시태그, 조회수/상호작용 수
  • [x] 인포박스 설정 (plot.infoBoxSetting), CYOA 설정 (plot.cyoaSetting)
  • [x] 메시지에서 텍스트/이미지만 골라내기 (message.texts, message.images)
  • [x] 보이스 (message.voice), 북마크, 수정 여부 같은 메타데이터
  • [x] 날짜는 전부 Date 객체로 변환됨 (createdAt, messageTime 등)
  • [x] 에러는 ZetaApiError (status, code, message)로 던져줌
  • [x] signal로 요청 취소 가능
  • [x] 결과 객체는 전부 Object.freeze — 실수로 못 건드림
  • [x] 타입 정의 다 들어있음 (RawPlot, RawRoomMessage 등 원본 응답 타입까지)

다 읽기 전용이긴 한데 나중에 플롯 만들기나 대화 시작 같은 작업도 할 수 있으면 해볼듯

설치

npm install @ohhi3368/zeta-illegally-fetch

예시

const { fetchPlot } = require("@ohhi3368/zeta-illegally-fetch");

async function main() {
    const plot = await fetchPlot("519ac4e3-4c90-4759-b784-84b5f15fc665");
    
    console.log("제목 : " + plot.name); // 제목 : 스무 번째 별자리와 나침반
    console.log("등장인물들 : " + plot.characters.map(c => c.name).join(", ")); // 등장인물들 : 아스텔라 폰 슈테인
    console.log("소개 : " + plot.about.contents[0].content.substr(0, 5) + "..."); //소개 : # 읽기 !...
}

main();

결론

역시 스캐터랩이라 그런가 보안이 이루다급?!?!?!