
Research
/Security News
jscrambler npm Package Compromised in Supply Chain Attack
A compromised jscrambler npm release added a malicious preinstall hook that runs hidden native binaries on Linux, macOS, and Windows.
@i18n-micro/core
Advanced tools
Core utilities for translations, formatting, and locale routing in Nuxt I18n Micro.
@i18n-micro/core is the core module for handling translations, routing, and formatting in a Nuxt.js application. It provides utilities for managing translations, interpolating placeholders, formatting numbers, dates, and relative times, and handling locale-specific routing. This module is designed to work seamlessly with nuxt-i18n-micro and its associated utilities.
You can install @i18n-micro/core using npm or yarn:
npm install @i18n-micro/core
or
yarn add @i18n-micro/core
This package provides several utilities for managing translations, formatting, and routing:
useTranslationHelper: A helper for managing translations, including loading, caching, and retrieving translations.interpolate: A utility for interpolating placeholders in translation strings with dynamic values.FormatService: A service for formatting numbers, dates, and relative times.RouteService: A service for handling locale-specific routing and route localization.Here’s an example of how you might use these utilities in your Nuxt.js project:
import { useTranslationHelper, interpolate, FormatService, RouteService } from '@i18n-micro/core'
// Initialize the translation helper
const translationHelper = useTranslationHelper()
// Load translations for a specific locale
translationHelper.loadTranslations('en', {
greeting: 'Hello, {name}!',
nested: {
message: 'This is a nested message.',
},
})
// Load page-specific translations for a specific locale
translationHelper.loadPageTranslations('en', 'home', {
welcome: 'Welcome to the home page!',
})
// Retrieve a translation for a specific locale
const greeting = translationHelper.getTranslation<string>('en', 'index', 'greeting')
console.log(greeting) // 'Hello, {name}!'
// Interpolate placeholders
const interpolatedGreeting = interpolate(greeting!, { name: 'John' })
console.log(interpolatedGreeting) // 'Hello, John!'
// Format numbers, dates, and relative times
const formatService = new FormatService()
const formattedNumber = formatService.formatNumber(123456.789, 'en-US')
const formattedDate = formatService.formatDate(new Date(), 'en-US')
const formattedRelativeTime = formatService.formatRelativeTime(new Date(), 'en-US')
console.log(formattedNumber) // '123,456.789'
console.log(formattedDate) // '10/5/2023'
console.log(formattedRelativeTime) // 'just now'
// Handle locale-specific routing
const routeService = new RouteService(i18nConfig, router, hashLocaleDefault, noPrefixDefault, navigateTo, setCookie)
const localizedRoute = routeService.getLocalizedRoute('/about', currentRoute, 'en')
console.log(localizedRoute) // Localized route object
useTranslationHelperhasCache(locale: string, page: string): boolean:
Checks if translations for a specific route and locale are cached.getCache(locale: string, routeName: string): Map<string, Translations | unknown> | undefined:
Retrieves the cache for a specific route and locale.setCache(locale: string, routeName: string, cache: Map<string, Translations | unknown>): void:
Sets the cache for a specific route and locale.mergeTranslation(locale: string, routeName: string, newTranslations: Translations, force = false): void:
Merges new translations into the cache for a specific route and locale.hasPageTranslation(locale: string, routeName: string): boolean:
Checks if translations for a specific route and locale are loaded.hasTranslation(locale: string, key: string): boolean:
Checks if a translation exists for the given key and locale.getTranslation<T = unknown>(locale: string, routeName: string, key: string): T | null:
Retrieves a translation for the given key, route, and locale.loadPageTranslations(locale: string, routeName: string, translations: Translations): Promise<void>:
Loads translations for a specific route and locale.loadTranslations(locale: string, translations: Translations): Promise<void>:
Loads global translations for the specified locale.interpolateinterpolate(template: string, params: Params): string
template: The translation string with placeholders (e.g., 'Hello, {name}!').params: An object containing key-value pairs for interpolation (e.g., { name: 'John' }).const result = interpolate('Hello, {name}!', { name: 'John' })
console.log(result) // 'Hello, John!'
FormatServiceformatNumber(value: number, locale: string, options?: Intl.NumberFormatOptions): string:
Formats a number according to the specified locale and options.formatDate(value: Date | number | string, locale: string, options?: Intl.DateTimeFormatOptions): string:
Formats a date according to the specified locale and options.formatRelativeTime(value: Date | number | string, locale: string, options?: Intl.RelativeTimeFormatOptions): string:
Formats a relative time (e.g., "2 hours ago") according to the specified locale and options.RouteServicegetCurrentLocale(route?: RouteLocationNormalizedLoaded | RouteLocationResolvedGeneric): string:
Returns the current locale based on the route or configuration.getCurrentName(route: RouteLocationNormalizedLoaded | RouteLocationResolvedGeneric): string | null:
Returns the display name of the current locale.getRouteName(route: RouteLocationNormalizedLoaded | RouteLocationResolvedGeneric, locale: string): string:
Returns the route name without the locale suffix.getFullPathWithBaseUrl(currentLocale: Locale, route: RouteLocationRaw): string:
Returns the full path with the base URL for the specified locale.switchLocaleRoute(fromLocale: string, toLocale: string, route: RouteLocationNormalizedLoaded | RouteLocationResolvedGeneric, i18nRouteParams: I18nRouteParams): RouteLocationRaw:
Switches the locale for the specified route.getLocalizedRoute(to: RouteLocationAsString | RouteLocationAsRelative | RouteLocationAsPath, route: RouteLocationNormalizedLoaded, locale?: string): RouteLocationResolved:
Returns a localized route for the specified locale.updateCookies(toLocale: string): void:
Updates cookies with the new locale.getCurrentRoute(): RouteLocationNormalizedLoaded:
Returns the current route.switchLocaleLogic(toLocale: string, i18nRouteParams: I18nRouteParams, route?: RouteLocationNormalizedLoaded | RouteLocationResolvedGeneric | string):
Handles the logic for switching locales and navigating to the new route.resolveLocalizedRoute(to: RouteLocationAsString | RouteLocationAsRelative | RouteLocationAsPath | string, locale?: string): RouteLocationResolved:
Resolves a localized route for the specified locale.If you find any issues or have suggestions for improvements, feel free to open an issue or submit a pull request on the GitHub repository.
This project is licensed under the MIT License. See the LICENSE file for more details.
For more information, visit the GitHub repository.
FAQs
Core utilities for translations, formatting, and locale routing in Nuxt I18n Micro.
The npm package @i18n-micro/core receives a total of 5,358 weekly downloads. As such, @i18n-micro/core popularity was classified as popular.
We found that @i18n-micro/core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Research
/Security News
A compromised jscrambler npm release added a malicious preinstall hook that runs hidden native binaries on Linux, macOS, and Windows.

Research
/Security News
A malicious .NET package is typosquatting the Braintree SDK to steal live payment card data, merchant API keys, and host secrets from production apps.

Security News
/Research
Compromised Injective SDK npm version 1.20.21 exfiltrates wallet private keys and mnemonics through fake telemetry functionality.