Watch the demo of Paraglide JS
Get started with:
npx @inlang/paraglide-js@latest init
Features
Treeshaking
Treeshaking gives us superpowers. With it, each page of your app only loads the messages that it actually uses. Incremental loading like this would usually take hours of manual tweaking to get right. With Paraglide-JS you get it for free. Say goodbye to huge bundles.
Getting started
1. Initialize paraglide-js
Initialize ParaglideJS whith:
npx @inlang/paraglide-js@latest init
This will:
- Install necessary dependencies
- Add the Paraglide compiler to your
build
script - Set up configuration files
2. Set up an adapter (optional)
Adapters are framework-integrations for Paraglide. If you are using a framework, using an adapter is recommended , but not required.
Usage
Running your build
script will generate a src/paraglide
folder. This folder contains all the code that you need to use paraglide-js.
Adding Messages
By default, paraglide expects your messages to be in messages/{lang}.json
.
{
"hello": "Hello world!"
"loginHeader": "Hello {name}, please login to continue."
}
Using Messages
You can import messages with import * as m from "./paraglide/messages"
. Don't worry, your bundler will only include the messages that you actually use.
import * as m from "./paraglide/messages.js"
import { setLanguageTag } from "./paraglide/runtime.js"
m.hello()
m.loginHeader({ name: "Samuel" })
If you want to choose between messages at runtime, you can create a record of messages and index into it.
import * as m from "./paraglide/messages.js"
const season = {
spring: m.spring,
summer: m.summer,
autumn: m.autumn,
winter: m.winter,
} as const
const msg = season["spring"]()
Sherlock integrates with paraglide to give you the optimal dev-experience.
![VsCode screenshot showing Sherlock adding inlay hints next to messages and making an "extract message" code action available for hardcoded text](https://cdn.jsdelivr.net/gh/opral/monorepo@latest/inlang/source-code/paraglide/paraglide-js/assets/sherlock-preview.png)
Adding Languages
You can declare which languages you support in ./project.inlang/settings.json
.
{
"languageTags": ["en", "de"]
}
Then create another messages/{lang}.json
file and get translating!
Setting the language
You can set the language tag by calling setLanguageTag()
. Any subsequent calls to either languageTag()
or a message function will use the new language tag.
import { setLanguageTag } from "./paraglide/runtime.js"
import * as m from "./paraglide/messages.js"
setLanguageTag("de")
m.hello()
setLanguageTag("en")
m.hello()
The language tag is global, so you need to be careful with it on the server to make sure multiple requests don't interfere with each other.
You will need to call setLanguageTag
on both the server and the client, since they run in separate processes.
Reacting to language changes
Messages aren't reactive, so you will need to trigger a re-render when the language changes. You can register a callback using onSetLanguageTag()
. It is called whenever the language tag changes.
If you are using an adapter this is likely done for you.
import { setLanguageTag, onSetLanguageTag } from "./paraglide/runtime.js"
import * as m from "./paraglide/messages.js"
onSetLanguageTag((newLanguageTag) => {
console.log(`The language changed to ${newLanguageTag}`)
})
setLanguageTag("de")
setLanguageTag("en")
There are a few things to know about onSetLanguageTag()
:
- You can only register one listener. If you register a second listener it will throw an error.
setLanguageTag
shouldn't be used on the server.
Getting a message in a specific language
You can import a message in a specific language from paraglide/messages/{lang}.js
.
import * as m from "./paraglide/messages/de.js"
m.hello()
If you want to force a language, but don't know which language ahead of time you can pass the languageTag
option as the second parameter to a message function. This is often handy on the server.
import * as m from "./paraglide/messages.js"
const msg = m.hello({ name: "Samuel" }, { languageTag: "de" })
Lazy-Loading
Paraglide consciously discourages lazy-loading translations since it seriously hurts
your web-vitals. Learn more about why lazy-loading is bad & what to do instead in this blog post.
If you really want to do it anway, you can lazily import the language-specific message files. Be careful with this.
const lazyGerman = await import("./paraglide/messages/de.js")
lazyGerman.hello()
Usage with a Bundler
If you are using a bundler you should use the corresponding plugin. The plugin will keep your message-functions up-to-date by compiling whenever your messages change and before build.
Playground
Find examples for how to use paraglide on codesandbox or in our GitHub repository.
Architecture
ParaglideJS leverages a compiler to generate vanilla JavaScript functions from your messages. We call these "message functions".
Message Functions are fully typed using JSDoc. They are exported individually from the messages.js
file making them tree-shakable. They aren't reactive, they just return a string.
This avoids many edge cases associated with reactivity, lazy-loading and namespacing that other i18n libraries have to work around.
In addition to the message functions, ParaglideJS also emits a runtime. The runtime is used to set the language tag. It contains less than 50 LOC (lines of code) and is less than 300 bytes minified & gzipped.
![paraglide JS architecture](https://cdn.jsdelivr.net/gh/opral/monorepo@latest/inlang/source-code/paraglide/paraglide-js/assets/architecture.svg)
Paraglide consists of four main parts:
Part | Description |
---|
Compiler | Compiles messages into tree-shakable message functions |
Messages | The compiled tree-shakable message functions |
Runtime | A runtime that resolves the language tag of the current user |
Adapter | (optional) An adapter that adjusts the runtime for different frameworks |
Compiler
The compiler loads an Inlang project and compiles the messages into tree-shakable and typesafe message functions.
Input
{
"hello": "Hello {name}!"
}
Output
export const hello = (params) => `Hello ${params.name}!`
Messages
By convention we import the compiled funcitions with a wildcard import.
import * as m from "../paraglide/messages.js"
Bundlers like Rollup, Webpack, or Turbopack tree-shake the messages that are not used, so using a wildcard import is perfectly fine.
Writing an Adapter
An "Adapter" is a library that integrates with a framework's liefcycle and does two things:
- Calls
setLanguageTag()
at appropriate times to set the language - Reacts to
onSetLanguageTag()
, usually by navigating or relading the page.
This example adapts Paraglide to a fictitious fullstack framework.
import { setLanguageTag, onSetLanguageTag, type AvailableLanguageTag } from "../paraglide/runtime.js"
import { isServer, isClient, request, render } from "@example/framework"
import { detectLanguage } from "./utils.js"
if (isServer) {
const detectLanguage = (request: Request) : AvailableLanguageTag => {
}
setLanguageTag(() => detectLanguage(request))
}
if(isClient) {
setLanguageTag(() => document.documentElement.lang)
onSetLanguageTag((newLanguageTag) => {
window.location.pathname = `/${newLanguageTag}${window.location.pathname}`
})
}
render((page) => (
<html lang={request.languageTag}>
<body>{page}</body>
</html>
))
We are grateful for all the support we get from the community. Here are a few comments we've received recently.
If you have any feedback / problems, please let us know on GitHub
Roadmap
Of course, we're not done yet! We plan on adding the following features to Paraglide JS soon:
Talks
Tooling
Paraglide JS is part of the Inlang ecosystem and integrates nicely with all the other Inlang compatible tools.
As a developer, you will love the Sherlock IDE extension.
If you are working with translators or designers you will find these tools useful:
- Fink - An Online UI for editing translations. Changes made in Fink are committed to a translation branch or submitted via pull request.
- Parrot - A Figma Plugin for previewing translations right in your Figma designs. This avoids any layout issues that might occur due to different text lengths in different languages.
Pricing