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

to-do-pin

v0.0.41

Published

[English](#english) | [한국어](#korean)

Readme

To-Do Pin 📌

English | 한국어


녹음 2025-10-18 032828 (1)

English

Overview

To-Do Pin is an npm library that allows you to store your tasks in localStorage and display them as a simple UI overlay.

  • Create new to-do pins with Alt+Click anywhere on the page.
  • On MacBook, you can create a new task anywhere on the page with Option+Click.
  • Track all tasks across pages using the To-Do Tracker.
  • Delete tasks when no longer needed.
  • Export and import tasks as JSON to backup or restore when localStorage is cleared.
  • Git integration to save tasks as GitHub issues.

Installation

npm install to-do-pin

Usage

Wrap your app with the ToDoPinProvider:

import { ToDoPinProvider } from "to-do-pin";
import "to-do-pin/index.css";

export default function App() {
  return (
    <ToDoPinProvider>
      <YourApp />
    </ToDoPinProvider>
  );
}

Environment Variables

To enable git integration, set the environment variable(VITE_GITHUB_URL and VITE_GITHUB_TOKEN). VITE_GITHUB_URL should be set to your repository URL without https://api.github.com. VITE_GITHUB_TOKEN should be set to your GitHub personal access token.

Github Setting

발급진

  • Vite / CRA
VITE_GITHUB_URL=https://api.github.com
VITE_GITHUB_TOKEN=ghp_...
  • Next.js
NEXT_PUBLIC_GITHUB_URL=https://api.github.com
NEXT_PUBLIC_GITHUB_TOKEN=ghp_...

한국어

개요

To-Do PinlocalStorage에 할 일을 저장하고, 이를 간단한 UI로 표시하는 npm 라이브러리입니다.

  • Alt+Click으로 페이지 어디서든 새로운 할 일을 생성할 수 있습니다.
  • 맥북의 경우 Option+Click으로 페이지 어디서든 새로운 할 일을 생성할 수 있습니다.
  • To-Do Tracker를 통해 모든 페이지의 할 일을 추적할 수 있습니다.
  • 필요 없는 할 일은 삭제할 수 있습니다.
  • JSON 파일로 내보내기/불러오기를 통해 백업 및 복구가 가능합니다.
  • 깃허브 연동을 통해 할 일을 깃허브 이슈로 저장할 수 있습니다.

설치

npm install to-do-pin

사용법

앱의 최상단에 ToDoPinProvider를 감싸주세요:

import { ToDoPinProvider } from "to-do-pin";
import "to-do-pin/index.css";

export default function App() {
  return (
    <ToDoPinProvider>
      <YourApp />
    </ToDoPinProvider>
  );
}

환경 변수 설정

깃허브 연동을 위해서는 VITE_GITHUB_URLVITE_GITHUB_TOKEN 환경 변수를 설정해야 합니다. VITE_GITHUB_URL은 github.com을 제외한 자신의 레포지토리 주소, VITE_GITHUB_TOKEN은 깃허브의 토큰입니다.

깃허브 설정 방법

발급진

  • Vite / CRA
VITE_GITHUB_URL=https://api.github.com
VITE_GITHUB_TOKEN=ghp_...
  • Next.js
NEXT_PUBLIC_GITHUB_URL=https://api.github.com
NEXT_PUBLIC_GITHUB_TOKEN=ghp_...

License

MIT