npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

use-locales

v0.7.1

Published

> React hooks to bring locales in your browser

Downloads

55

Readme

use-locales

React hooks to bring locales in your browser

npm npm bundle size CI

How it works?

  • Detects your browser lang
  • Try to find locales in locales storages
  • If locales are not in locales storages or lang store in local storage is different that the browser lang
    • Load accurate locales, if it doesn't find one matching the browser lang, fallback to en
    • Set downloaded locales and lang in localStorage
  • Add locales in context
  • As a developper give a path (no path means root path) to search from your loaded locales

How to use it?

  1. Install the package: yarn add use-locales react-use
  2. Add a locales provider to your application:
import React from 'react'
import ReactDOM from 'react-dom'
import { LocalesProvider } from 'use-locales'
import App from './app'

ReactDOM.render(
  <LocalesProvider hashKey={process.env.REACT_APP_GIT_SHA || Date.now()}>
    <App />
  </LocalesProvider>
  document.getElementById('root'),
)
  1. Use locales in your components
import React from "react";
import { useLocales } from "use-locales";

const App = () => {
  const messages = useLocales();

  return <div>{messages.welcome}</div>;
};
  1. Maintain your locales Your locales must accessibles from http in <public-path>/locales/<lang>.json
  • <public-path> is loaded from PUBLIC_PATH env variable
  • <lang> is 2 chars, like en or fr

Exemple of files: public/locales/en.json

{
  "welcome": "Welcome!"
}

public/locales/fr.json

{
  "welcome": "Bienvenue !"
}

API

  • <LocalesProvider hashKey>: provider, your nodes must be wrapped by this to use hooks, we recommand to set it at your application root element.
    • hashKey: is used to detect if locales have to be fetched before the timeout. A good practice is to use the git commit hash!
  • useLang(): string: returns the detect language use by the browser
  • useLocales(path: string?): object: given the path, returns locales from <public-path>/locales/<lang>.json
    • if path is not set it will returns all the locales

Feel free to open PR/Issues !

Feel free to discuss or open PR to have a better package all together! Right know I use this package into: