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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@dbbs/poeditor-sdk

v0.0.5

Published

POEditor SDK

Readme

POEditor SDK

TypeScript-first SDK for seamless integration with POEditor's localization platform

Features ✨

  • Type-Safe Interactions - Full TypeScript support with strict typing
  • Atomic Operations - Batch term/translation synchronization
  • Enterprise Ready - Retry policies, caching, and error recovery
  • Webhook Support - Built-in verification and event typing
  • High API Coverage - Most of the POEditor endpoints implemented

Installation 📦

# Using yarn
yarn add @dbbs/poeditor-sdk

# Using npm
npm install @dbbs/poeditor-sdk

Quick Start 🚀

  1. Get API Token

    Visit POEditor Account Settings

    Generate API token

    Store securely (recommended: environment variables)

  2. Basic Usage

import { POEditorSDK } from '@dbbs/poeditor-sdk';

// Initialize with project ID and token
const sdk = new POEditorSDK(process.env.POEDITOR_TOKEN, 12345);

// Sync terms atomically
await sdk.syncTerms({
  terms: [
    { term: 'welcome_message', context: 'greetings' },
    { term: 'error_404', context: 'errors' }
  ]
});

// Export French translations
const frenchTranslations = await sdk.exportProject({
  language: 'fr',
  type: 'json'
});

API Reference 📖

| Category | Method | Parameters | Description | |-----------|---------------------------|--------------------------------------|---------------------------------| | Projects | listProjects() | - | List all accessible projects | | Projects | exportProject() | { language: string, type: Format } | Export translations | | Terms | syncTerms() | { terms: Term[] } | Atomic term synchronization | | Terms | updateTerms() | { terms: UpdateTerm[] } | Batch term updates | | Languages | addLanguageToProject() | { language: string, code?: string }| Add new project language |

View full api Documentation ->

Contributing 🤝

We welcome contributions! Please follow our workflow:

  1. Fork the repository

  2. Create feature branch (feat/your-feature)

  3. Write tests for new functionality

  4. Submit PR with:

     - Description of changes
    
     - Updated documentation
    
     - Test coverage report

License 📜

The DBBS Poeditor SDK is open-source software licensed under the MIT License.

Authors and Maintainers 👥