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

@kimpuro/next-14-ts-team

v1.0.6

Published

[NPM](https://www.npmjs.com/package/@kimpuro/next-14-ts-team)

Readme

KimPuro's Next.js team project Boilerplate

NPM

이 템플릿 레포지토리는 Next.js를 사용한 팀 프로젝트를 위한 보일러플레이트입니다.
Next.js, React 및 Tailwind CSS를 사용하여 프로젝트를 시작할 수 있습니다.
팀 프로젝트를 원활하게 진행하기 위한 구조와 기능을 제공합니다. 또한 각종 규칙이 사전 정의되어 있습니다.

🚀 Getting Started

아래는 이 템플릿을 사용하는 3가지 방법입니다.

1. npx로 설치

npx @kimpuro/next-14-ts-team

2. GitHub template을 사용

image

3. git clone을 통해 직접 다운로드

git clone https://github.com/kimpuro/next-14-js-boilerplate.git
cd <project-directory>

패키지 매니저는 pnpm을 사용하는 것을 권장드립니다. 아래의 명령어를 통해 의존성을 설치할 수 있습니다:

pnpm i

아래의 명령어를 통해 개발 서버를 시작할 수 있습니다:

pnpm run dev

📁 Project Structure

이 템플릿은 통상적으로 사용되는 Next.js 프로젝트 구조를 따릅니다.

  • public/

    • fonts/ - 커스텀 폰트 파일
    • icons/ - 아이콘 파일
    • images/ - 이미지 파일
  • src/

    • app/
      • api/ - APi route 관련 코드
    • components/ - 리액트 컴포넌트
    • hooks/ - 리액트 커스텀 훅
    • libs/ - 라이브러리 관련 코드
    • services/ - 외부 API 호출을 위한 서비스 함수
    • states/ - 글로벌 상태 관리
    • styles/ - 스타일 관련 코드
    • utils/ - 유틸리티 함수
    • types/ - 타입 스크립트 타입
  • __tests__/ - 테스트 코드

📚 Commit

이 템플릿에서는 husky, commitlint, comitizen를 사용하여 커밋 메시지 규칙을 적용하고 있으며 Conventional CommitsAngularJs Git Commit Message Conventions를 따릅니다.
사전 설정된 규칙에 맞지 않는 커밋 메시지를 작성한다면 커밋이 거부됩니다.

How to commit

pnpm commit을 사용하여 미리 정의되어 있는 컨벤션에 맞게 커밋을 생성할 수 있습니다:

git add .
pnpm commit

image

컨벤션을 지킨다면 pnpm commit 명령어가 아닌 git 만을 사용해서 커밋 진행도 가능합니다:

git add .
git commit -m "feat: add new feature"

pre-commit

husky를 사용해 pre-commit 단계에서 아래와 같은 작업을 수행합니다.

  1. prettier를 사용해 스테이징된 파일만을 대상으로 코드 포맷팅을 진행합니다.
  2. prettier로 수정된 파일의 변경 사항을 다시 스테이징합니다.
  3. 타입스크립트 컴파일러에서 타입 오류를 검사합니다.
  4. 프로젝트의 Linter를 실행하여 코드의 품질과 스타일 규칙을 확인합니다.
  5. jest를 사용해 테스트 코드를 실행합니다.
  6. commitlint를 사용해 커밋 메시지의 형식을 확인합니다.

위의 과정들을 전부 통과한다면 커밋이 생성됩니다.

Commit Message Type

  • ✨ feat: 새로운 기능의 추가, 기존 기능을 수정
  • 🐛 fix: 버그 수정
  • 📝 docs: 문서 관련 수정
  • 🎨 style: 코드의 의미에 영향을 미치지 않는 변경 사항(공백, 서식, 세미콜론 누락 등)
  • ♻️ refactor: 기능의 변화가 없는 코드 리팩터링
  • ⚡ perf: 성능 향상을 위한 코드 변경
  • ✅ test: 테스트 코드 추가, 기존 테스트 코드 변경
  • 🔧 build: 빌드 시스템이나 외부 종속성에 영향을 미치는 변경 사항(예시 : gulp, broccoli, npm)
  • 👷 ci: CI 구성 파일 및 스크립트 추가, 변경
  • 🔨 chore: 소스 또는 테스트 파일을 수정하지 않는 기타 변경 사항
  • ⏪ revert: 이전 커밋을 되돌림

pnpm commitgit commit 명령어는 commit 생성까지만 진행되기 때문에 추가적으로 git push를 진행해 주셔야 합니다.

CHANGELOG

위에 정의된 커밋 컨벤션을 지킨다면 CHANGELOG.md 파일을 자동으로 생성할 수 있습니다.
CHANGELOG.md 파일은 git -cliff를 사용하여 생성할 수 있습니다.
git-cliff가 설치되어 있지 않다면 Rust 기반 패키지 매니저인 cargo를 사용하여 설치해 주세요

아래의 명령어를 통해 CHANGELOG.md 파일을 생성할 수 있습니다:

git cliff -o CHANGELOG.md

💡 ESLint & Prettier

이 템플릿에는 사전 정의된 ESLint와 Prettier 설정이 포함되어 있습니다.
.eslintrc.json.prettierrc 파일을 통해 설정을 확인할 수 있습니다.

eslintrc.json:

{
  "extends": ["next", "prettier"],
  "rules": {
    "react/react-in-jsx-scope": "off"
  },
  "settings": {
    "import/resolver": {
      "alias": {
        "map": [["@", "./"]],
        "extensions": [".js", ".jsx", ".ts", ".tsx"]
      }
    }
  }
}

.prettierrc:

{
  "semi": false,
  "singleQuote": true,
  "trailingComma": "all",
  "useTabs": false,
  "tabWidth": 2,
  "printWidth": 80,
  "arrowParens": "always",
  "plugins": ["prettier-plugin-tailwindcss"]
}

Pull Request Template

이 템플릿에는 사전 생성된 Pull Request 템플릿이 포함되어 있습니다.
Pull Request를 생성하신다면 아래와 같은 템플릿으로 자동 생성됩니다. 체크 버튼을 클릭하시면서 작성하시면 됩니다. image

Codecov

Codecov를 사용하여 테스트 커버리지 측정을 자동화 할 수 있도록 기본적인 구조가 설정되어 있습니다. 링크에서 자세한 방법을 알아보세요. Codecov를 사용하고 싶지 않으시다면 .github/workflows/codecov.yml과 codecov.yml을 삭제해 주시면 됩니다.

📝 etc

수정하고 싶은 부분이나 추가하고 싶은 기능이 있다면 언제든지 PR을 보내주세요.