
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@dbbs/poeditor-sdk
Advanced tools
TypeScript-first SDK for seamless integration with POEditor's localization platform
# Using yarn
yarn add @dbbs/poeditor-sdk
# Using npm
npm install @dbbs/poeditor-sdk
Get API Token
Visit POEditor Account Settings
Generate API token
Store securely (recommended: environment variables)
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'
});
| 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 ->
We welcome contributions! Please follow our workflow:
Fork the repository
Create feature branch (feat/your-feature)
Write tests for new functionality
Submit PR with:
- Description of changes
- Updated documentation
- Test coverage report
The DBBS Poeditor SDK is open-source software licensed under the MIT License.
FAQs
POEditor SDK
We found that @dbbs/poeditor-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.