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

instream-sdk

v0.0.19

Published

## Overview

Downloads

60

Readme

instream-sdk

Overview

instream-sdk는 실시간 스트리밍과 채팅 기능을 제공하는 React 컴포넌트 라이브러리입니다. 이 라이브러리는 간편하게 비디오 스트리밍과 대화 기능을 웹 애플리케이션에 통합할 수 있도록 설계되었습니다.

Install

  • npm: npm install instream-sdk
  • yarn: yarn add instream-sdk

Components

Streaming

Streaming 컴포넌트는 실시간 스트리밍을 위한 인터페이스를 제공합니다. 이 컴포넌트를 사용하면 사용자는 스트리밍 서비스를 손쉽게 시작하고 관리할 수 있습니다.

Props

  • ApiKey (string): 스트리밍 서비스 API 키입니다.
  • sessionId (string): 현재 스트리밍 세션의 고유 ID입니다.
  • participantId (string): 스트림에 참여하는 참가자의 ID입니다. (옵션)
  • nickname (string): 사용자의 닉네임을 지정합니다. (옵션)
  • customControl: 커스텀 제어 인터페이스를 활성화할 수 있는 옵션입니다. (옵션)

Chat

Chat 컴포넌트는 실시간 채팅 기능을 제공합니다. 사용자는 이 컴포넌트를 통해 메시지를 보내고 받을 수 있습니다.

Props

  • ApiKey (string): 채팅 서비스 API 키입니다.
  • sessionId (string): 현재 채팅 세션의 고유 ID입니다.
  • participantId (string): 채팅에 참여하는 참가자의 ID입니다. (옵션)
  • nickname (string): 사용자의 닉네임을 지정합니다. (옵션)
  • title (string): 채팅방의 제목을 설정합니다. (옵션)

Example Code

아래 예제 코드는 LiveChat 컴포넌트를 사용하는 방법을 보여줍니다.

import { Streaming, Chat } from "instream-sdk";

function App() {
    const streamApiKey = "your-stream-api-key";
    const streamSessionId = "your-stream-session-id";
    const participantId = "participant-id";
    const nickname = "user-nickname";

    return (
        <div>
            <Streaming
                ApiKey={streamApiKey}
                sessionId={streamSessionId}
                participantId={participantId}
                nickname={nickname}
                customControl
            />
            <Chat
                ApiKey={streamApiKey}
                sessionId={streamSessionId}
                participantId={participantId}
                nickname={nickname}
            />
        </div>
    );
}

export default App;

Demo

https://github.com/4seasons-sc23/test-page