New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

localekey

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

localekey

This package is used to import/export locales from LocaleKey.

latest
Source
npmnpm
Version
0.0.3
Version published
Maintainers
1
Created
Source

localekey

npm (localekey)

This package imports/exports locales from localekey to your project.

Install

pnpm i -D localekey

Features

  • Can be used with any framework.

Prerequisites

You need a way to run your the file. tsx is recommended.

Example

Usage

This is example on how to use the package with typesafe-i18n. But you can use it with any framework or simply use node to write and read files.

Setup

import LocaleKey from 'localekey';

export const localekey = new LocaleKey({
	projectId: '<Your project id>', // See url in localekey app
	secret: '<Your team secret>', // See team settings in localekey app
});

Import

import { storeTranslationToDisk } from 'typesafe-i18n/importer';
import { localekey } from './utils';

const importTranslations = async () => {
	const locales = await localekey.readAll();

	await Promise.all(
		Object.entries(locales).map(async ([locale, data]) =>
			storeTranslationToDisk({
				locale,
				translations: data,
			}),
		),
	);
};

void importTranslations();

Export

import { readTranslationFromDisk } from 'typesafe-i18n/exporter';
import { locales } from './i18n-util';
import { localekey } from './utils';

const exportTranslations = async () => {
	const response = await Promise.all(
		locales.map(async (localeCode) => {
			const mapping = await readTranslationFromDisk(localeCode);
			return {
				data: mapping.translations as Record<string, string>,
				localeCode,
			};
		}),
	);

	const payload: Record<string, Record<string, string>> = {};

	for (const { data, localeCode } of response) {
		payload[localeCode] = data;
	}

	await localekey.updateAll(payload);
};

void exportTranslations();

Run

Then run tsx ./src/importer tsx ./src/exporter

Keywords

localekey

FAQs

Package last updated on 03 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts