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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@fastlocalize/nextjs

v0.1.0-alpha.2

Published

FastLocalize Next.js plugin for seamless i18n integration

Readme

@fastlocalize/nextjs

FastLocalize Next.js plugin for seamless i18n integration with automatic translation management.

Features

  • Zero-config setup with Next.js 13+ App Router support
  • Automatic translation key collection in development
  • TypeScript-first with complete type safety
  • Built-in locale routing and detection
  • Performance optimized with minimal overhead

Installation

npm install @fastlocalize/nextjs next-intl

Quick Start

1. Environment Variables

NEXT_PUBLIC_FASTLOCALIZE_PROJECT_ID=your_project_id
NEXT_PUBLIC_FASTLOCALIZE_TOKEN=your_token

2. Configuration

Create i18n/config.ts:

import { LocaleConfig } from "@fastlocalize/nextjs";

export const localeConfig: LocaleConfig = {
  locales: ["en", "zh-CN", "ja"],
  defaultLocale: "en",
};

3. Setup Files

i18n/request.ts:

import { createFastLocalizeRequestConfig } from "@fastlocalize/nextjs";
import { localeConfig } from "./config";

export default createFastLocalizeRequestConfig(
  localeConfig,
  async (locale: string) => {
    return (await import(`./locales/${locale}.json`)).default;
  }
);

middleware.ts:

import { createFastLocalizeMiddleware, defaultMiddlewareConfig } from "@fastlocalize/nextjs";
import { localeConfig } from "./i18n/config";

export default createFastLocalizeMiddleware(localeConfig);
export const config = defaultMiddlewareConfig;

next.config.js:

const { withFastLocalize } = require("@fastlocalize/nextjs");
module.exports = withFastLocalize("./i18n/request")(nextConfig);

4. App Layout

import { FastLocalizeProvider, getFastLocalizeConfig } from "@fastlocalize/nextjs";
import { getMessages, setRequestLocale } from "next-intl/server";

export default async function RootLayout({ children, params: { locale } }) {
  setRequestLocale(locale);
  const messages = await getMessages();
  const config = getFastLocalizeConfig();

  return (
    <html lang={locale}>
      <body>
        <FastLocalizeProvider locale={locale} messages={messages} config={config}>
          {children}
        </FastLocalizeProvider>
      </body>
    </html>
  );
}

5. Usage

import { useTranslations } from "@fastlocalize/nextjs";

export default function HomePage() {
  const t = useTranslations("HomePage");
  return <h1>{t("title")}</h1>;
}

API Reference

Main Exports

// Components
export { FastLocalizeProvider } from "@fastlocalize/nextjs";

// Configuration
export { createFastLocalizeRouting, createFastLocalizeMiddleware, createFastLocalizeRequestConfig } from "@fastlocalize/nextjs";

// Utilities  
export { getFastLocalizeConfig, withFastLocalize } from "@fastlocalize/nextjs";

// Hooks (re-exports from next-intl)
export { useTranslations, useLocale, useMessages } from "@fastlocalize/nextjs";

// Types
export type { LocaleConfig, FastLocalizeConfig } from "@fastlocalize/nextjs";

Configuration Options

Environment Variables

NEXT_PUBLIC_FASTLOCALIZE_PROJECT_ID=your_project_id
NEXT_PUBLIC_FASTLOCALIZE_TOKEN=your_token
NEXT_PUBLIC_FASTLOCALIZE_API_URL=https://api.fastlocalize.com  # optional
NEXT_PUBLIC_FASTLOCALIZE_LIVEBOX=latest                        # optional
NEXT_PUBLIC_FASTLOCALIZE_ENABLE_MISSING_KEY_SUBMISSION=true    # optional

Custom Message Loading

export default createFastLocalizeRequestConfig(
  localeConfig,
  async (locale: string) => {
    // Load from API or merge multiple sources
    const response = await fetch(`/api/translations/${locale}`);
    return await response.json();
  }
);

Migration from next-intl

  1. Replace NextIntlClientProvider with FastLocalizeProvider
  2. Replace createNavigation with createFastLocalizeRouting
  3. Replace createMiddleware with createFastLocalizeMiddleware
  4. Add FastLocalize environment variables

License

MIT