Gathering detailed insights and metrics for react-polyglot-hooks
Gathering detailed insights and metrics for react-polyglot-hooks
Gathering detailed insights and metrics for react-polyglot-hooks
Gathering detailed insights and metrics for react-polyglot-hooks
npm install react-polyglot-hooks
Typescript
Module System
Min. Node Version
Node Version
NPM Version
TypeScript (95.54%)
JavaScript (4.46%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
26 Stars
1,903 Commits
3 Forks
2 Watchers
11 Branches
1 Contributors
Updated on Jul 04, 2025
Latest Version
0.5.0
Package Id
react-polyglot-hooks@0.5.0
Unpacked Size
26.53 kB
Size
8.17 kB
File Count
22
NPM Version
6.14.7
Node Version
14.4.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
2
39
Hooks for using Polyglot.js with React.
React Polyglot Hooks is available as an npm package.
1// with npm 2npm install react-polyglot-hooks 3 4// with yarn 5yarn add react-polyglot-hooks
React is required as a peer dependency. Please install version 16.8.3 or later (minimum requirement for hooks).
React Polyglot Hooks offers 1 wrapper component: <I18n>
, 2 hooks: useLocale
and useT
and 1 helper component: <T>
.
The hooks and the helper component have to be wrapped with the <I18n>
component to work properly.
Here is a quick example to get you started:
First, wrap a parent component with <I18n>
and provide locale
and phrases
.
Parent.jsx
1import React from 'react'; 2import { I18n } from 'react-polyglot-hooks'; 3import Child from './Child'; 4 5// ... or any ways to determine current locale 6const locale = window.locale || 'en'; 7 8// You can put translations in separate files 9const phrases = { 10 en: { hello: 'Hello, World!' }, 11 fr: { hello: 'Bonjour, Monde!' }, 12}; 13 14export default function Parent() { 15 return ( 16 <I18n locale={locale} phrases={phrases[locale]}> 17 <Child /> 18 </I18n> 19 ); 20}
Then, in a child component, call the hooks:
Child.jsx
1import React from 'react'; 2import { T, useLocale } from 'react-polyglot-hooks'; 3 4export default function Child() { 5 const locale = useLocale(); // Current locale: "en" 6 return ( 7 <React.Fragment> 8 <span>{locale}</span> 9 <T phrase="hello" /> 10 </React.Fragment> 11 ); 12}
That's it! For more in-depth examples, check out the examples directory.
Types are baked in as the project is written in TypeScript.
<I18n>
Provides i18n context to the T component and the hooks. Accepts all options supported by Polyglot.js.
Prop | Type | Required | Description |
---|---|---|---|
children | Node | ✅ | Any node(s) accepted by React. |
locale | string | ✅ | Current locale, used for pluralization. |
phrases | { [key: string]: string } | ✅ | Key-value pair of translated phrases, can be nested. |
allowMissing | boolean | ❌ | Controls whether missing phrase keys in a t call is allowed. |
interpolation | { prefix: string, suffix: string } | ❌ | Controls the prefix and suffix for an interpolation. |
onMissingKey | (key: string, options: InterpolationOptions, locale: string) => string | ❌ | A function called when allowMissing is true and a missing key is encountered. |
pluralRules | { pluralTypes: PluralTypes, pluralTypeToLanguages: PluralTypeToLanguages } | ❌ | Custom pluralization rules to be applied to change language(s) behaviour(s). |
<T>
Renders a phrase according to the props.
Props | Type | Required | Description |
---|---|---|---|
phrase | string | ✅ | Key of the needed phrase. |
count | number | ❌ | A number to be interpolated with smart_count . |
fallback | string | ❌ | A fallback to be rendered if the phrase is missing. |
interpolations | InterpolationOptions | ❌ | See InterpolationOptions below. |
useLocale
Returns the current active locale (string
).
useT
Returns a special function (t
) which takes in parameters and returns a phrase.
t(phrase, InterpolationOptions)
Param | Type | Required | Description |
---|---|---|---|
phrase | string | ✅ | Key of the needed phrase. |
InterpolationOptions | number or { [key: string]: ReactNode } | ❌ | A number to be interpolated with smart_count , or a key-value pair to interpolate values into the phrase. |
For more details, please visit the documentation of Polyglot.js.
The changelog is available here.
This project is licensed under the terms of the MIT License.
This project is developed to ease the use of Polyglot.js within React, and is highly influenced by react-polyglot
.
No vulnerabilities found.
Reason
24 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
3 existing vulnerabilities detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More