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

social-media-parser

v0.1.2

Published

Lightweight, zero-dependency library to parse, identify, and normalize social media URLs across 39+ platforms.

Readme

social-media-parser

A lightweight, zero-dependency TypeScript library for parsing, identifying, and normalizing social media URLs. Feed it any link from 39+ supported platforms and get back structured data — the platform name, content type, extracted entities (usernames, post IDs, video IDs), and a clean canonical URL with tracking parameters stripped away.

Built for link previews, analytics pipelines, content aggregators, social bookmarking tools, or anywhere you need to make sense of messy social media URLs.

Features

  • ⚡ Fast URL parsing and canonical normalization
  • 🌍 39+ platforms supported out of the box
  • 🧩 Extensible — bring your own parsers or use only the ones you need
  • 🧼 Cleans tracking params (utm_*, fbclid, gclid, si, igshid, etc.)
  • 🔒 Zero runtime dependencies
  • ✅ Fully typed API with 100% test coverage

Supported Platforms

  • 🐦 Twitter / X
  • 📸 Instagram
  • 🎵 TikTok
  • 👽 Reddit
  • 🧑‍💻 GitHub
  • ▶️ YouTube
  • 🎧 Spotify
  • 🐘 Mastodon
  • ☁️ SoundCloud
  • ☁️ Mixcloud
  • 💬 Discord
  • 📰 Substack
  • ✍️ Medium
  • 🇷🇺 Vkontakte (VK)
  • 📺 Rumble
  • 🎥 Kick
  • 📻 Radio Javan
  • 💸 Patreon
  • 💬 LINE
  • 🐧 QQ / Qzone
  • 🎧 Last.fm
  • ☕ Ko-fi
  • 📘 Facebook
  • 🔎 Search engines (Google, Bing, DuckDuckGo, Yahoo, Yandex, Baidu, Brave, Ecosia, Qwant, Startpage)
  • 💼 LinkedIn
  • 🧵 Threads
  • 🦋 Bluesky
  • 📌 Pinterest
  • 🎮 Twitch
  • ✈️ Telegram
  • 👻 Snapchat
  • 🎬 Vimeo
  • ▶️ Dailymotion

Installation

npm install social-media-parser

Quick Example

import { parse, identify, normalize } from 'social-media-parser'

parse('https://twitter.com/elonmusk/status/1234567890')
// {
//   platform: 'twitter',
//   type: 'post',
//   entities: { post_id: '1234567890', username: 'elonmusk' },
//   url: 'https://x.com/i/status/1234567890'
// }

identify('https://www.instagram.com/johndoe/')
// 'instagram'

normalize('https://youtu.be/dQw4w9WgXcQ?si=abc&utm_source=test')
// 'https://youtube.com/watch?v=dQw4w9WgXcQ'

API

parse(input, options?)

Returns:

  • SocialLinkParsedLink when recognized
  • null when input is invalid or unsupported

identify(input, parsers?)

Returns:

  • platform string ('twitter', 'instagram', etc.)
  • null when unsupported

normalize(input, parsers?)

Returns:

  • canonical URL string
  • null when unsupported

Custom Parsers

import { parse, twitter } from 'social-media-parser'

const result = parse('https://x.com/elonmusk', { parsers: [twitter] })

Forced Network

import { parse } from 'social-media-parser'

const result = parse('@elonmusk', { network: 'twitter' })

Development

  • bun run typecheck
  • bun run lint
  • bun run lint:fix
  • bun run test
  • bun run test:coverage
  • bun run build
  • bun run check
  • bun run release
  • bun run release:dry-run

bun run check enforces 100% coverage thresholds.