Gathering detailed insights and metrics for use-intl
Gathering detailed insights and metrics for use-intl
Gathering detailed insights and metrics for use-intl
Gathering detailed insights and metrics for use-intl
kiwi-intl
I18N tools for universal javascript apps, easy use & better api;
babel-plugin-react-intl
Extracts string messages for translation from modules that use React Intl.
otp-intl
I18N tools for universal javascript apps, easy use & better api;
intl-format
I18N tools for universal javascrit apps, easy use & better api;
npm install use-intl
Typescript
Module System
Node Version
NPM Version
TypeScript (98.73%)
JavaScript (1.27%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
3,527 Stars
1,143 Commits
305 Forks
13 Watchers
66 Branches
86 Contributors
Updated on Jul 17, 2025
Latest Version
4.3.4
Package Id
use-intl@4.3.4
Unpacked Size
81.16 kB
Size
24.79 kB
File Count
55
NPM Version
lerna/3.9.0/node@v20.19.2+x64 (linux)
Node Version
20.19.2
Published on
Jul 02, 2025
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
1
Internationalization (i18n) for Next.js
Internationalization (i18n) is an essential part of the user experience, therefore next-intl
gives you all the parts you need to get language nuances right.
1// UserProfile.tsx 2import {useTranslations} from 'next-intl'; 3 4export default function UserProfile({user}) { 5 const t = useTranslations('UserProfile'); 6 7 return ( 8 <section> 9 <h1>{t('title', {firstName: user.firstName})}</h1> 10 <p>{t('membership', {memberSince: user.memberSince})}</p> 11 <p>{t('followers', {count: user.numFollowers})}</p> 12 </section> 13 ); 14}
1// en.json 2{ 3 "UserProfile": { 4 "title": "{firstName}'s profile", 5 "membership": "Member since {memberSince, date, short}", 6 "followers": "{count, plural, ↵ 7 =0 {No followers yet} ↵ 8 =1 {One follower} ↵ 9 other {# followers} ↵ 10 }" 11 } 12}
No vulnerabilities found.
Reason
28 commit(s) and 17 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
no binaries found in the repo
Reason
packaging workflow detected
Details
Reason
Found 4/30 approved changesets -- score normalized to 1
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
63 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-14
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