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

@iamlittleboring/tg-webapp-tools

v1.0.5

Published

React utilities and components for Telegram Web Apps

Readme

tg-webapp-tools

React helpers for working with the Telegram WebApp API.

What is included

  • WebAppProvider for exposing the Telegram WebApp instance through React context
  • button components for Telegram native buttons
  • hooks for common Telegram WebApp actions
  • hooks for Telegram events, viewport/init/theme data, safe area insets
  • hooks for native capabilities such as QR scan, fullscreen, story sharing, sensors, location, and biometrics
  • SetupWebApp for synchronizing Telegram UI colors with your app

Installation

npm install @iamlittleboring/tg-webapp-tools @twa-dev/sdk

This package is published to npm. The consuming app also needs react, react-dom, and @twa-dev/sdk.

Basic usage

Make sure the Telegram WebApp script is available before rendering your app.

import React from "react";
import ReactDOM from "react-dom/client";
import {
    SetupWebApp,
    WebAppProvider,
    useReady,
} from "@iamlittleboring/tg-webapp-tools";

const App = () => {
    const ready = useReady();

    React.useEffect(() => {
        ready();
    }, [ready]);

    return (
        <>
            <SetupWebApp
                backgroundColor="bg_color"
                headerColor="bg_color"
                bottomBarColor="secondary_bg_color"
            />
            <div>Telegram Mini App</div>
        </>
    );
};

ReactDOM.createRoot(document.getElementById("root")!).render(
    <WebAppProvider>
        <App />
    </WebAppProvider>
);

Notes

  • WebAppProvider is safe to render outside Telegram and during SSR. In unsupported environments, hooks receive null instead of crashing immediately.
  • Some Telegram features are optional and may not exist on every client version. Hooks in this package now guard against missing APIs where possible.
  • useDownloadFile throws a descriptive error if the Telegram client does not expose downloadFile, so it is best used after a capability check in the consuming app.

Hook coverage

The package now includes wrappers for:

  • app lifecycle and state: useReady, useWebAppEvent, useViewport, useInitData, useValidateInitData, useThemeParams, useSafeAreaInsets
  • user prompts and system UI: useShowAlert, useShowConfirm, useShowPopup, useScanQrPopup, useReadTextFromClipboard
  • navigation and sharing: useOpenLink, useOpenTelegramLink, useSwitchInlineQuery, useSendData, useShareToStory, useShareMessage
  • permissions and device features: useRequestContact, useRequestWriteAccess, useRequestEmojiStatusAccess, useHomeScreen, useClosingConfirmation, useVerticalSwipes, useFullscreen, useOrientationLock
  • managers: useCloudStorage, useBiometricManager, useAccelerometer, useDeviceOrientation, useGyroscope, useLocationManager