0.8.1 • Published 7 months ago

@localess/js-client v0.8.1

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

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')
0.3.0

11 months ago

0.8.1

7 months ago

0.8.0

7 months ago

0.4.1

8 months ago

0.4.0

11 months ago

0.4.2

8 months ago

0.1.0

12 months ago

0.5.0

8 months ago

0.5.1

8 months ago

0.0.11

12 months ago

0.0.12

12 months ago

0.2.1

11 months ago

0.2.0

11 months ago

0.2.2

11 months ago

0.6.0

7 months ago

0.0.10

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.5

1 year ago

0.0.4

2 years ago

0.0.2

2 years ago