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 🙏

© 2025 – Pkg Stats / Ryan Hefner

arcalive

v0.4.1

Published

Node.js arca.live module

Readme

Changes between v0.2.0 -> 0.3

1. Typescript로 전환

Typescript 적용 완료

2. ESM

Rather than:

const Arca = require("arcalive");

Use:

import * as Arca from "arcalive";

Changes between v0.1.3 -> 0.2.0

1. set~ 계열의 method들 대신 property getter / setter를 사용합니다

Rather than:

FetchQueue.setRateLimit(1000);
Board.setGlobalArticleCache(64);
boardInstance.setArticleCache(128);

Use:

FetchQueue.rateLimit = 1000;
Board.defaultCacheSize = 64;
boardInstance.articleCacheSize = 128;

2. loginSession은 이제 Promise로 반환됩니다.

단 anonymousSession은 그대로 즉시 반환됩니다.

const anonymousSession = Arca.Session.anonymousSession();
const loginSession = await Arca.Session.loginSession(username, password);

Usage

1. 세션 만들기

import * as Arca from "arcalive";

const session = await Arca.Session.loginSession(username, password); // username과 password로 아이디와 비밀번호 전달

2. 원하는 게시판(채널) 열기

const board = await session.getBoard("breaking");

2-1. 게시판에 대해서 원하는 조작 수행

board.readArticle(articleId); // 해당 board에서 articleId에 해당하는 게시글을 읽어옴.
board.writeArticle({
  // 해당 board에 게시글을 작성함
  category: "정보",
  title: "게시글 작성",
  content: "테스트 내용입니다.<br>HTML 코드를 전달합니다.",
});
board.deleteArticle(articleId); // 해당 board에서 articleId에 해당하는 게시글을 삭제함
board.editArticle(articleId, {
  // 해당 게시글의 내용을 수정함
  category: "정보",
  title: "게시글 작성",
  content: "테스트 내용입니다.<br>HTML 코드를 전달합니다.",
});

board.readPage(pageNo); // 해당 board에서 pageNo번째 페이지에 있는 게시글들의 미리보기를 읽어옴(인덱스는 1부터 시작)

3. 원하는 게시글 열기

const article = board.getArticle(articleId); // 해당 board에서 articleId에 해당하는 객체를 얻어옴

3-1. 게시글에 대해서 원하는 조작 수행

article.read(); // 게시판에서 수행하는 작업과 동일
article.delete();
article.edit({
  category: "정보",
  title: "게시글 작성",
  content: "테스트 내용입니다.<br>HTML 코드를 전달합니다.",
});

article.writeComment(comment); // 해당 게시글에 댓글을 작성함
article.deleteComment(commentId); // 해당 게시글

모든 조작은 Promise로 반환됩니다.