@localazy/ts-api
This is a Typescript library facilitating usage of Localazy's API. To better understand this library, it is recommended to study the API documentation first.
Installation and usage
To install this library, run the following command
npm i @localazy/ts-api
Afterwards, import the library and initialize it.
import LocalazyApi from '@localazy/ts-api';
const api = LocalazyApi({
projectToken: "your-project-token"
// ...additional options
})
Project token
In order to access anything from Localazy, you need to sign up and create a project.
Then, you'll be able to generate a project token here.
See documentation for more information.
Methods overview
listProjects
List projects related to the project token.
async listProjects(options: ListProjects = {}, config: CommonConfig = {});
Documentation: https://localazy.com/docs/api/list-projects
import
Import content into Localazy.
async import(options: Import, config: CommonConfig = {})
Documentation: https://localazy.com/docs/api/import
listFormats
Retrieve list of available file formats and related options.
async listFormats(config: CommonConfig = {})
Documentation: https://localazy.com/docs/api/import#retrieve-a-list-of-available-file-types
listFiles
List Localazy files.
async listFiles(options: ListFiles, config: CommonConfig = {})
Documentation: https://localazy.com/docs/api/files
listKeysInFileForLanguage
This is the main method for retrieving translated content from given project and localazy file for given language.
async listKeysInFileForLanguage(options: ListKeysInFile, config: CommonConfig = {})
Documentation: https://localazy.com/docs/api/files#retrieve-a-list-of-keys-and-translations-from-file