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

obnofi-cli

v2.0.0

Published

Obnofi CLI

Downloads

84

Readme

obnofi-cli

obnofi 워크스페이스와 상호 작용하기 위한 커맨드 라인 인터페이스(CLI)입니다.

설치

npm install -g obnofi-cli

사용법

obnofi <command> [options]

명령어

auth - 인증 관리

  • obnofi auth login: 브라우저를 열고 승인 후 localhost callback으로 토큰을 자동 저장합니다.
    • 예: obnofi auth login --url http://localhost:3001
    • --token <token>: 자동 로그인 대신 토큰을 직접 저장합니다.
    • --url <url>: 자체 호스팅 서버 주소를 지정합니다. 로컬 개발 환경에서 http://localhost:3001을 넣으면 웹 API 기준으로 내부 base는 http://localhost:3000/api로 맞춰 저장됩니다.
    • 로컬 개발 환경에서 cli-auth 페이지도 자동으로 http://localhost:3000/cli-auth를 엽니다.
  • obnofi auth logout: 로그아웃합니다.
  • obnofi auth whoami: 현재 로그인된 계정 정보(이메일, 플랜)를 확인합니다.

note - 노트 관리

  • obnofi note ls: 최근 노트 20개를 목록으로 보여줍니다.
    • --search <keyword>: 제목으로 노트를 검색합니다.
    • -n, --limit <number>: 표시할 노트 개수를 지정합니다. (기본값: 20)
  • obnofi note new <title>: 새로운 노트를 생성하고 ID를 출력합니다.
    • --open: 노트를 생성한 후 바로 브라우저에서 엽니다.
  • obnofi note cat <id>: 노트의 마크다운 내용을 터미널에 출력합니다.
  • obnofi note edit <id>: 기본 편집기($EDITOR)로 노트를 수정하고 저장합니다.
  • obnofi note delete <id>: 노트를 삭제합니다.
    • -y: 확인 프롬프트 없이 바로 삭제합니다.

db - 데이터베이스 다이어그램 관리

  • obnofi db ls: 데이터베이스 다이어그램 블록 목록을 보여줍니다.
  • obnofi db push <file.sql> <page-id>: 로컬 SQL 파일을 obnofi ERD 블록으로 업로드합니다.
    • --merge: 기존 스키마를 덮어쓰지 않고 병합합니다.
  • obnofi db pull <page-id>: obnofi ERD를 SQL DDL 형식으로 터미널에 출력합니다.
    • -o, --output <file.sql>: 결과를 파일로 저장합니다.
  • obnofi db diff <file.sql> <page-id>: 로컬 SQL 파일과 obnofi ERD 간의 차이점을 비교하여 보여줍니다.

feed - 피드 관리

  • obnofi feed ls: 구독 중인 피드 소스 목록을 보여줍니다.
  • obnofi feed read: 모든 소스에서 최신 피드 항목 10개를 가져와 보여줍니다.
    • --source <source>: 특정 소스의 피드만 필터링합니다.
    • -n, --limit <number>: 표시할 피드 항목 수를 지정합니다. (기본값: 10)

설정

로그인 정보 및 설정은 ~/.config/obnofi-cli 경로에 저장됩니다. 브라우저 로그인이 어려운 환경에서는 obnofi auth login --token <token>으로 수동 fallback을 사용할 수 있습니다.