Socket
Socket
Sign inDemoInstall

18n

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

18n

A simple i18n module


Version published
Maintainers
1
Created
Source

18n

A simple i18n module

Install

$ npm install 18n

Usage

18n will read the configuration from the 18n.config.js in your package root.

Configuration

// 18n.config.js
module.exports = {
  langPath: 'languages',
  langPacks: [
    'en-us',
    'zh-cn'
  ],
  selector: () => {
    const {language} = navigator;
    switch (language) {
      case 'zh':
      case 'zh-cn':
        return 'zh-cn';
      default:
        return 'en-us';
    }
  }
};

License

MIT © LitoMore

Keywords

FAQs

Package last updated on 08 Sep 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc