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

@team-pick/together

v1.1.0

Published

## together란

Readme

Together

together란

팀 피크에서 제공할 서비스를 위한 디자인 시스템입니다.
편의성과, 자율성을 고려하여 개발자의 DX를 최대한 향상시키위해 개발중입니다.

코드 컨벤션

네이밍 규칙

variant(변수)

  • 이름은 대소문자를 구분하며 소문자와 대문자는 다릅니다.
  • 문자로 변수 이름을 시작하고 camelCase이름에 사용합니다. (_와 같은 문자 사용 X)
  • 배열 디스트럭처링과 같은 상황에서 특정 인덱스를 사용하지 않지만 불러올 경우가 발생한다면 _문자로 표시하여 사용하지 않는다는 것을 명시합니다.
  • 변수 이름은 저장된 값을 설명하는 자체 설명적이어야 합니다. (예 대고소 학생 수 -> number: X, numberOfStudent: O)
  • boolean 타입의 변수는 일반적으로 is와 has를 붙여 명시합니다. (isDark, hasToken)

function(함수)

  • 변수와 마찬가지로 대소문자를 구분하여 사용합니다.
  • 함수 이름을 문자로 시작하고 camelCase이름에 사용합니다.
  • 설명이 포함된 이름, 일반적으로 명령형의 동사를 사용합니다. (예: getStudentList)
  • 일반적인 접두사는 get, make, apply 등을 사용합니다.

constant(상수)

  • 파일, 함수 또는 클래스의 맨 위에 상수를 정의하십시오.
  • UPPER_SNAKE_CASE 규칙을 사용합니다.

prettier 규칙

규칙을 맞추지 않더라도 자동으로 설정됩니다.

  • semi(true): 세미콜론은 ; 붙이도록 되어있습니다.
  • singleQuote(false): ""를 사용하도록 설정됩니다.
  • tabWidth: 2
  • printWidth: 줄의 길이는 80으로 기본 설정되어있습니다.
  • bracketSpacing(true): { name: "name" }과 같이 대괄호 사이에 공백을 유지합니다.

테스트

테스트와 관련된 모든 작업은 storybook을 통해서 확인합니다.

버저닝 규칙

MAJOR: API 호환성이 깨질만한 변경사항
MINOR: 하위 호환성 지키면서 API 기능이 추가된 것
PATCH: 하위 호환성 지키는 범위 내에서 버그가 수정된 것