Skip to content

Localess JavaScript / TypeScript Client SDK. It provides a simple way to interact with the Localess API from your JavaScript or TypeScript application.

Notifications You must be signed in to change notification settings

Lessify/localess-js-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

81 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation



logo




Localess JavaScript / TypeScript Client SDK

This client SDK is designed to work with the Localess API. It provides a simple way to interact with the Localess API from your JavaScript or TypeScript application.

Important: The Client is designed to be used on the server side only, as it requires your Localess API Token to be kept secret. Do not use this client in your frontend application, as it exposes your API Token to the public.

Installation

NPM

npm install @localess/js-client@latest

Yarn

yarn add @localess/js-client@latest

Client

import {localessClient} from "@localess/js-client";

const llClient = localessClient({
  // A fully qualified domain name with protocol (http/https) and port.
  origin: 'https://my-localess.web.app',
  // Localess space ID, cna be found in the Localess Space settings
  spaceId: 'I1LoVe2LocaLess4Rever',
  // Localess API token, can be found in the Localess Space settings
  token: 'Baz00KaT0KeN8S3CureLL'
});

// Fetch all Content Links
llClient.getLinks()
// Fetch content by SLUG
llClient.getContentBySlug('docs/overview')
// Fetch content by ID
llClient.getContentById('FRnIT7CUABoRCdSVVGGs')
// Fetch translations by locale
llClient.getTranslations('en') 

Sync with Visual Editor

It will automatically inject Localess Sync Script in to the HTML page.

import {loadLocalessSync} from "@localess/js-client";

// A fully qualified domain name with protocol (http/https) and port.
loadLocalessSync('https://my-localess.web.app')

About

Localess JavaScript / TypeScript Client SDK. It provides a simple way to interact with the Localess API from your JavaScript or TypeScript application.

Resources

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published