
Security News
ESLint Adds Official Support for Linting HTML
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
react-native-globalize
Advanced tools
React Native Globalize provides an easy-to-use and powerful solution for internationalization (i18n) in React Native apps.
Using the useGlobalize()
hook:
import { useGlobalize } from 'react-native-globalize';
export const HookExample = () => {
const { formatCurrency } = useGlobalize();
return (
<Text>
{formatCurrency(1000, 'USD', {
maximumFractionDigits: 0,
useGrouping: true,
})}
</Text>
);
};
Using a Formatted
component:
import { FormattedCurrency } from 'react-native-globalize';
export const ComponentExample = () => (
<FormattedCurrency currencyCode="USD" maximumFractionDigits={0} useGrouping value={1000} />
);
Copyright (c) 2015-2020 Josh Swan
Licensed under the The MIT License (MIT) (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://raw.githubusercontent.com/joshswan/react-native-globalize/master/LICENSE
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
FAQs
Internationalization (i18n) for React Native
The npm package react-native-globalize receives a total of 951 weekly downloads. As such, react-native-globalize popularity was classified as not popular.
We found that react-native-globalize demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.