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

@plea-fe/plea-fe-init

v0.1.0

Published

Company React frontend project initializer.

Readme

plea-fe-init

프론트엔드 팀 공통 React 프로젝트 초기 세팅 CLI입니다.

react-common을 기본 템플릿으로 사용하고, 프로젝트 생성 시 선택한 옵션에 따라 테스트, Storybook, 세션 관리 방식, 배포 CI 예시를 조합해서 새 프로젝트를 생성합니다.

사용법

pnpm dlx @plea-fe/plea-fe-init my-project

또는 npm 기준으로 실행할 수 있습니다.

npx @plea-fe/plea-fe-init my-project

명령어를 실행하면 아래 항목을 선택합니다.

  • 테스트 환경: 사용 안 함 / 단위 테스트 / E2E 테스트 / 둘 다
  • Storybook 사용 여부
  • 세션 관리 방식: JWT 토큰 / 세션 쿠키
  • 배포 CI 예시: 사용 안 함 / S3 + CloudFront / EC2

기본으로 강제되는 항목

  • pnpm
  • Vite + React + TypeScript
  • TanStack Router
  • TanStack Query
  • Tailwind/shadcn 기반 UI 구조
  • React Hook Form + Zod
  • nice-react-modal
  • .env.local, .env.example
  • Husky
  • commitlint 기반 commit convention
  • Changeset

옵션을 명령어로 지정하기

프롬프트 없이 바로 생성하려면 --yes와 옵션을 함께 사용할 수 있습니다.

pnpm dlx @plea-fe/plea-fe-init my-project \
  --yes \
  --tests both \
  --auth jwt \
  --storybook true \
  --deploy none

사용 가능한 옵션입니다.

--tests <none|unit|e2e|both>
--auth <jwt|cookie>
--storybook <true|false>
--deploy <none|s3-cloudfront|ec2>
--no-install
--skip-git

배포

이 패키지는 npm public registry에 @plea-fe/plea-fe-init 이름으로 배포하는 것을 기준으로 합니다.

로컬에서 직접 배포할 때:

pnpm install
pnpm lint
pnpm build
pnpm publish --access public

GitHub Actions로 배포할 때:

  1. npm에서 publish 권한이 있는 access token을 생성합니다.
  2. GitHub repository secret에 NPM_TOKEN 이름으로 등록합니다.
  3. GitHub Actions의 Publish workflow를 실행합니다.

개발

pnpm install
pnpm lint
pnpm build

로컬에서 CLI를 테스트할 때:

pnpm dev test-project --yes --no-install --skip-git