@localess/js-client
v0.0.10
Published
Universal JavaScript/TypeScript SDK for Localess's API.
Downloads
42
Maintainers
Readme
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
Usage
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')
Proxy
If you are behind a proxy, make sure to set the environment variables before using the client. The client will read environment variables to determine the PROXY (HTTPS_PROXY, https_proxy, HTTP_PROXY, http_proxy) and use it to make requests to the Localess API.