# Installation

# Compatibility Note

  • Kdu.js 2.0.0+

# Direct Download / CDN

https://unpkg.com/kdu-i18n/dist/kdu-i18n (opens new window)

unpkg.com (opens new window) provides NPM-based CDN links. The above link will always point to the latest release on NPM. You can also use a specific version/tag via URLs like https://unpkg.com/kdu-i18n@8.17.7/dist/kdu-i18n.js (opens new window)

Include kdu-i18n after Kdu and it will install itself automatically:

<script src="https://unpkg.com/kdu/dist/kdu.js"></script>
<script src="https://unpkg.com/kdu-i18n/dist/kdu-i18n.js"></script>

# NPM

npm install kdu-i18n

# Yarn

yarn add kdu-i18n

When using with a module system, you must explicitly install the kdu-i18n via Kdu.use():

import Kdu from 'kdu'
import KduI18n from 'kdu-i18n'

Kdu.use(KduI18n)

You don't need to do this when using global script tags.

# Kdu Cli 3.x

kdu add i18n

You need Kdu cli 3.x as pre-requisite, you can install it on your shell with the next command:

npm install @kdujs/cli -g

# Dev Build

You will have to clone directly from GitHub and build kdu-i18n yourself if you want to use the latest dev build.

git clone https://github.com/khanhduy1407/kdu-i18n.git node_modules/kdu-i18n
cd node_modules/kdu-i18n
npm install # or `yarn`
npm run build  # or `yarn run build`

# Explanation of Different Builds

In the dist/ directory of the NPM package (opens new window) you will find many different builds of KduI18n. Here’s an overview of the difference between them:

  • UMD: kdu-i18n.js
  • CommonJS: kdu-i18n.common.js
  • ES Module for bundlers: kdu-i18n.esm.js
  • ES Module for browsers: kdu-i18n.esm.browser.js

# Terms