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 🙏

© 2025 – Pkg Stats / Ryan Hefner

react-iphone-chat

v1.1.6

Published

iPhone 메시지 스타일의 채팅 컴포넌트 (React, TypeScript, Tailwind CSS)

Downloads

286

Readme

react-iphone-chat

iPhone 메시지 스타일의 채팅 컴포넌트를 React와 TypeScript로 구현한 라이브러리입니다. alt text

주요 특징

  • iPhone 메시지 UI와 유사한 깔끔한 디자인
  • 사용자와 상대방 메시지를 구분하여 표시
  • 자동 스크롤 기능
  • Tailwind CSS 유틸리티 클래스를 활용한 스타일링

설치

npm install react-iphone-chat

또는

yarn add react-iphone-chat

필수 의존성

이 컴포넌트는 Tailwind CSS를 사용합니다. 사용하는 프로젝트에 Tailwind CSS가 사전에 설치 및 설정되어 있어야 합니다.

Tailwind CSS 설치 및 설정 방법은 Tailwind CSS 공식 문서를 참고하세요.

사용 예시

import { useState } from "react"
import { Chat, Message } from "react-iphone-chat"

const App = () => {
  const [messages, setMessages] = useState<Message[]>([
    {
      id: "1",
      content: "안녕하세요!",
      timestamp: new Date().toISOString(),
      type: "other",
    },
  ])

  const handleSendMessage = (msg: string) => {
    const newMsg: Message = {
      id: (messages.length + 1).toString(),
      content: msg,
      timestamp: new Date().toISOString(),
      type: "user",
    }
    setMessages([...messages, newMsg])
  }

  return (
    <div className="h-screen w-screen">
      <Chat messages={messages} onSendMessage={handleSendMessage} />
    </div>
  )
}

export default App

API 문서

Chat 컴포넌트 Props

  • messages: Message[] 채팅 메시지 배열입니다. 각 메시지는 다음의 인터페이스를 따릅니다:

    export interface Message {
      id: string
      content: string
      timestamp: string
      type: "other" | "user" // other: 상대방 메시지, false: 사용자가 보낸 메시지
    }
  • onSendMessage (선택): (message: string) => void 메시지 전송 시 호출되는 콜백 함수입니다.

  • height (선택): string 채팅 컴포넌트의 높이를 지정합니다. (예: "500px", "100%")

개발 및 빌드

프로젝트를 빌드하려면 Rollup을 사용합니다.

npm run build

자세한 빌드 설정은 rollup.config.js 파일을 참고하세요.

라이선스

MIT License