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

@caor/aligo

v0.1.0

Published

Universal Aligo Kakao message API client for server, browser, and CLI.

Readme

@caor/aligo

Universal Aligo Kakao message API client for server, browser, and CLI.

The client is based on docs/알리고문자/알리고 문자.md and uses only standard fetch, URLSearchParams, and FormData APIs.

Install

npm install @caor/aligo

Server Usage

import { AligoClient } from "@caor/aligo";

const aligo = new AligoClient({
  apiKey: process.env.ALIGO_API_KEY,
  userId: process.env.ALIGO_USER_ID
});

await aligo.alimtalk.send({
  senderKey: "sender-profile-key",
  templateCode: "TXXXXXXXX",
  sender: "0212345678",
  messages: [{
    receiver: "01012345678",
    receiverName: "홍길동",
    subject: "예약 안내",
    message: "홍길동님 예약이 확정되었습니다."
  }]
});

Browser Usage

The package can run in browsers because it is fetch-based. Do not expose apiKey in public frontend code. Use a backend route or edge function as a proxy, then call that route from the browser.

CLI

export ALIGO_API_KEY="..."
export ALIGO_USER_ID="..."

aligo profile categories
aligo template list --sender-key "sender-profile-key"
aligo alimtalk send \
  --sender-key "sender-profile-key" \
  --template-code "TXXXXXXXX" \
  --sender "0212345678" \
  --receiver "01012345678" \
  --subject "예약 안내" \
  --message "예약이 확정되었습니다."

API Surface

  • client.profile.requestAuth()
  • client.profile.categories()
  • client.profile.add()
  • client.profile.list()
  • client.template.list()
  • client.template.add()
  • client.template.modify()
  • client.template.remove()
  • client.template.requestReview()
  • client.alimtalk.send()
  • client.brandtalk.createTemplate()
  • client.brandtalk.listTemplates()
  • client.brandtalk.send()
  • client.history.list()
  • client.history.detail()
  • client.account.remain()
  • client.cancel()
  • client.raw()

Objects and arrays passed to JSON-string fields such as button, templateButton, templateCoupon, and carouselList are serialized automatically. When a Blob or File is included, the request is sent as FormData; otherwise it is sent as application/x-www-form-urlencoded.

By default the client throws AligoApiError for API-level failures. Pass throwOnApiError: false to receive raw API responses.