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

nextjs-localization

v0.1.0

Published

A simple locale management package for Next.js apps

Downloads

46

Readme

Next.js Localization by separatrix

Next.js Localization is a setup script and package to create a new Next.js project with built-in localization support. This setup includes a powerful context API for managing multiple locales and additional configurations to streamline development.

Usage

Follow these steps to create and configure a new Next.js project with localization support:

Step 1: Run the Setup Script

To create a new Next.js project with localization, open your terminal and run the following command, replacing <project-name> with your desired project name:

npx nextjs-localization <project-name>

# or

npm run build
npm run start <project-name>

The script will create a new Next.js project with the specified name and apply the localization configurations.

Step 2: Install Dependencies

Once the project is created, navigate to the project directory and install the necessary dependencies:

cd <project-name>
npm install

This will install the required packages such as Next.js, TypeScript, React, Redux Toolkit, axios, date-fns, and others.

Features

1. Localization Support

  • Includes LocaleProvider and useLocale hooks to easily manage multiple locales in your Next.js project.
  • Allows for dynamic language switching and easy integration with next/router.
  • Works seamlessly with your custom locale files.

2. TypeScript and ESLint

  • Sets up a project with TypeScript by default.
  • ESLint is pre-configured to help maintain clean and consistent code.

3. Additional Packages

  • Redux Toolkit: Pre-installed for state management.
  • axios: For making HTTP requests.
  • date-fns: For working with dates and times in your project.
  • Stylelint: Configured for managing CSS/SASS styles.

4. Directory Structure

  • Creates important directories for localization (locales), Redux store, and other utilities.
  • Provides a starting point for organizing your Next.js project.

5. Custom Scripts

  • Updates package.json with custom scripts for building, starting, and testing your project.

Localization API

1. LocaleProvider

Wrap your Next.js app with the LocaleProvider to manage locales throughout your application.

import { LocaleProvider } from 'nextjs-localization';
import { useRouter } from 'next/router';
import { en, ru } from '../locales';

export default function App({ Component, pageProps }) {
  const router = useRouter();

  return (
    <LocaleProvider localesArray={[en, ru]} router={router}>
      <Component {...pageProps} />
    </LocaleProvider>
  );
}

2. useLocale Hook

This hook allows you to access the current locale and router within any component:

import { useLocale, setLocale, changeLocale } from 'nextjs-localization';

function MyComponent() {
  const { locales, router } = useLocale();

  return (
    <div>
      <button onClick={() => changeLocale(router, 'ru')}>Change Locale</button>
      <h1>{setLocale('error404')}</h1>
    </div>
  );
}

3. setLocale(key: string)

Fetches the localized string based on the current locale:

const message = setLocale('welcome_message'); // Will return a message based on the current locale

4. changeLocale(router: NextRouter, locale: string)

Changes the current locale and reloads the page with the new locale:

changeLocale(router, 'ru'); // Switches the locale to Russian

5. Localization Files

Create JSON files for each locale (e.g., en.ts, ru.ts) in the locales folder. Here is an example:

// locales/en.ts
export const en = {
  locale: "en",
  language: "English",
  welcome_message: "Welcome to our website",
  error404: "Page not found, 404 error",
};

// locales/ru.ts
export const ru = {
  locale: "ru",
  language: "Русский",
  welcome_message: "Добро пожаловать на наш сайт",
  error404: "Страница не найдена, ошибка 404",
};

How to Add New Locales

  1. Add new locale files in the locales directory (e.g., fr.ts for French).
  2. Update the localesArray in your _app.tsx to include the new locales:
import { LocaleProvider } from 'nextjs-localization';
import { useRouter } from 'next/router';
import { en, ru, fr } from '../locales';

export default function App({ Component, pageProps }) {
  const router = useRouter();

  return (
    <LocaleProvider localesArray={[en, ru, fr]} router={router}>
      <Component {...pageProps} />
    </LocaleProvider>
  );
}

License

This project is licensed under the MIT License.