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

create-ait-app

v0.0.2

Published

Create AIT App scaffolding tool

Readme

create-ait-app

앱인토스(Apps in Toss) 프로젝트를 빠르게 시작할 수 있는 CLI 도구예요. Vite 기반 React + TypeScript 프로젝트를 생성하고, TDS/인앱결제/인앱광고 등을 선택적으로 구성할 수 있어요.

사용법

npx create-ait-app my-app

실행하면 대화형 프롬프트로 아래 항목을 선택할 수 있어요.

  1. 패키지 매니저 — npm, yarn, pnpm 중 선택
  2. TDS (Toss Design System) — TDS 패키지 설치 여부
  3. AI Skills — AI 도구를 위한 SDK 문서 파일 추가 여부 (Cursor / Claude Code / Codex / 선택안함)
  4. 예제 코드 — 인앱결제, 인앱광고 샘플 코드 추가 (복수 선택 가능)

CLI 옵션

프롬프트 없이 한 줄로 설정할 수도 있어요.

create-ait-app my-app --inline --pm yarn --tds --skills --ai cursor --sample iap,iaa

| 옵션 | 설명 | | ----------------- | --------------------------------------------------------------- | | --inline | 대화형 질문을 생략하고 옵션만으로 설정 (미지정 항목은 모두 n) | | --pm <name> | 패키지 매니저 지정 (npm, yarn, pnpm) | | --tds | TDS 패키지 설치 | | --skills | AI Skills 파일 추가 | | --ai <name> | AI 도구 지정 (cursor, claude, codex) | | --sample <name> | 예제 코드 추가 (iap, iaa / 복수: iap,iaa) | | --help | 도움말 출력 |

생성되는 프로젝트 구조

  • 기본 템플릿은 최소 구성(헤더, 개발자센터/커뮤니티 링크 등)만 포함합니다.
  • 예제 코드를 선택한 경우에만 src/hooks/, src/pages/ 및 해당 파일들이 추가됩니다.
my-app/
├── src/
│   ├── App.tsx
│   ├── App.css
│   ├── main.tsx
│   ├── index.css
│   ├── vite-env.d.ts
│   ├── hooks/           # --sample 선택 시에만 추가
│   └── pages/           # --sample 선택 시에만 추가
├── public/
├── granite.config.ts
├── package.json
├── vite.config.ts
├── tsconfig.json
└── README.md

관련 링크