Star 历史趋势
数据来源: GitHub API · 生成自 Stargazers.cn
README.md

Social SDK: one typed call, every platform. Bluesky, Instagram, LinkedIn, Threads, TikTok, X, and YouTube wired to one client.

GitHub stars Follow @leodev on X

Typed social platform integrations for TypeScript applications. Use direct platform adapters or an optional managed backend while keeping account selection, capabilities, content, and delivery outcomes explicit.

  • Direct adapters for Bluesky, Instagram, LinkedIn, Threads, TikTok, X, and YouTube
  • Optional managed backends for Zernio and Post for Me
  • Typed capability manifests and platform-native operations behind explicit subpath imports
  • Independent per-destination outcomes for complete, processing, uncertain, and failed work
  • A deterministic mock backend for local development and contract tests
  • An offline CLI for adapter discovery, capability checks, diagnostics, and request validation

Install

Social SDK runs in trusted server-side code on Node.js 22.12+ or Bun. Keep platform tokens, managed-provider keys, OAuth secrets, and webhook secrets out of browser bundles.

npm install @opencoredev/social-sdk
# or
bun add @opencoredev/social-sdk

For application setup and integration options, see the installation guide.

Usage

Start with the mock backend to verify an integration without credentials, platform calls, or billable provider requests:

import { createSocial, connectedAccountRef } from "@opencoredev/social-sdk";
import { mockBackend } from "@opencoredev/social-sdk/testing";

const social = createSocial({
  backend: mockBackend({ scenario: "immediate-text-success" }),
});

const result = await social.posts.publish({
  targets: [
    {
      account: connectedAccountRef({
        backend: "default",
        platform: "x",
        accountId: "mock-account-1",
      }),
    },
  ],
  content: { text: "Hello from Social SDK" },
  idempotencyKey: "quickstart-1",
});

console.log(result.status, result.outcomes[0]?.state);
// complete published

The same client shape works with a direct platform adapter or a managed backend. Import only the adapter you use from its documented subpath.

Platforms and backends

Direct platform adapters cover Bluesky, Instagram, LinkedIn, Threads, TikTok, X, and YouTube. Hosted execution routes are available through the Zernio and Post for Me adapters. Managed services are optional; a direct integration does not require a Social SDK account.

Read the platform capability matrix before choosing an adapter. It describes the normalized operations implemented by each integration and does not replace provider permissions, account eligibility, or live verification.

CLI

The social-sdk CLI is offline. It does not authenticate accounts, upload media, publish content, or make hidden network requests.

social-sdk adapters --json
social-sdk capabilities --adapter youtube --json
social-sdk doctor --adapter zernio --json
social-sdk examples --json
social-sdk validate --adapter mock --file request.json --json

See the CLI reference for command output, validation limits, and exit codes.

Documentation

Full documentation lives at social-sdk.dev/docs. Good places to start:

Sponsors

Social SDK is supported by companies that help keep platform integrations practical and maintained. Want your logo here? Become a sponsor →

Social SDK sponsors

MIT License · Built by @leodev

关于 About

Typed TypeScript SDK for direct and managed social platform integrations, with capability checks, explicit outcomes, and deterministic testing.
api-integrationblueskybundeveloper-toolsinstagramlinkedinnodejsoauthoauth2sdksocial-mediasocial-media-apithreadstiktoktwittertypescriptyoutube

语言 Languages

TypeScript72.7%
MDX16.7%
HTML5.3%
JavaScript5.0%
CSS0.2%
Astro0.2%

提交活跃度 Commit Activity

代码提交热力图
过去 52 周的开发活跃度
227
Total Commits
峰值: 70次/周
Less
More

核心贡献者 Contributors