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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@replexica/sdk

v0.7.6

Published

Replexica JS SDK

Downloads

11,258

Readme

Replexica SDK

This package is part of the Replexica project, an i18n toolkit designed to help you ship multi-language applications quickly and efficiently.

Overview

The Replexica SDK provides a streamlined interface to interact with the Replexica AI Localization Real-Time API. It simplifies the process of integrating advanced localization capabilities into your applications, enabling you to build sophisticated multilingual experiences with ease.

Features

  • Easy API Access: Provides a simple and intuitive way to interact with the Replexica AI Localization Real-Time API.
  • Efficient Chunking: Automatically handles payload chunking for optimal API usage.
  • Progress Tracking: Offers built-in progress reporting for long-running localization tasks.
  • Error Handling: Robust error handling for API interactions.
  • Flexible Configuration: Customizable settings for API endpoints, batch sizes, and more.

Use Cases

The Replexica SDK is versatile and can be used in various scenarios, including:

  • Building multilingual chat applications
  • Developing next-generation email clients with real-time translation
  • Creating comment systems with on-the-fly localization
  • Any application requiring real-time or batch localization of content

Installation

npm install @replexica/sdk

Usage

/*
  For the sake of this example,
  we're assuming that REPLEXICA_API_KEY is stored in a .env file.
*/
import dotenv from 'dotenv';
dotenv.config();

// Import the Replexica SDK
import { ReplexicaEngine } from '@replexica/sdk';

// Initialize the Replexica Engine SDK
const replexica = new ReplexicaEngine({
  apiKey: process.env.REPLEXICA_API_KEY, // Your Replexica API key, obtained from the Replexica.com dashboard
});

// Localize a JSON payload
const localizedContent = await replexica.localizeObject(
  { myKey: 'Hello, world!' },
  { sourceLocale: 'en', targetLocale: 'es' },
  (progress) => console.log(`Localization progress: ${progress}%`) // Optional progress callback
);

// Output the localized content
console.log(localizedContent);

For more detailed usage instructions and API documentation, please refer to the Replexica documentation.

Contributing

Contributions to the Replexica SDK are welcome. If you would like to contribute, please review our contributing guidelines for detailed instructions.

License

The Replexica SDK inherits its license from the root of the Replexica repository. For the most up-to-date licensing information, please refer to the LICENSE file in the root of the Replexica repository.

For more information about Replexica and its ecosystem, please visit the main Replexica repository.