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

@axboot/dev-tools

v0.0.10

Published

로컬 개발용으로 제공되는 CLI 및 개발 서버 도구 모음입니다. 이 프로젝트는 `@axboot/dev-tools`(서버/CLI)와 UI 애플리케이션(`@axboot-dev-tools/ui`, private)로 구성된 모노레포입니다.

Readme

AXBoot Dev Tools

로컬 개발용으로 제공되는 CLI 및 개발 서버 도구 모음입니다. 이 프로젝트는 @axboot/dev-tools(서버/CLI)와 UI 애플리케이션(@axboot-dev-tools/ui, private)로 구성된 모노레포입니다.

주요 기능

  • SPA 정적 파일 서빙 및 Vite 개발 서버 프록시 대상 자동 연결
  • 로컬 파일 시스템 편집용 API(제한된 루트 경로에만 쓰기 허용)
  • 백엔드 프록시 라우트(요청 포워딩)
  • 스캐폴드 유틸리티(guards 템플릿 생성)

빠른 시작

레포 전체를 체크아웃한 뒤 루트에서 의존성을 설치하세요:

npm install -g @axboot/dev-tools@latest
# 또는 pnpm
pnpm add -g @axboot/dev-tools@latest
# 또는 yarn (Yarn Classic)
yarn global add @axboot/dev-tools@latest

axdev start

Windows환경에서는 PowerShell의 실행 정책으로 인해 전역 설치된 CLI의 실행 스크립트(*.ps1)가 차단될 수 있습니다. PowerShell에서 스크립트 실행을 허용하려면 다음 명령을 실행하세요:

npx axdev start

업데이트

npm install -g @axboot/dev-tools@latest
# 또는 pnpm
pnpm add -g @axboot/dev-tools@latest
# 또는 yarn
yarn global add @axboot/dev-tools@latest

현재 설치된 버전 확인

# 로컬(현재 프로젝트)
npm ls @axboot/dev-tools --depth=0

# 전역
npm ls -g @axboot/dev-tools --depth=0

# 레지스트리(최신 버전)
npm view @axboot/dev-tools version