Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/justforuse/simple-traditional-chinese

Nodejs package, transfer chinese between simple and traditional
https://github.com/justforuse/simple-traditional-chinese

Last synced: about 5 hours ago
JSON representation

Nodejs package, transfer chinese between simple and traditional

Awesome Lists containing this project

README

        

# Transfer Chinese language json file between simple and traditional.

## Install

```sh
$ npm install --save simple-traditional-chinese
```

## Usage

```js
// load the simple to traditional module
var traditionlize = require("./traditionlize");

// load the traditional to simple module
var simplify = require("./simplify");

// transfer simple to traditional language json file
// and then there will be a file named tra_simple-language.json file
traditionlize("simple-language.json");

// transfer simple to traditional language json file
// and then there will be a file named sim_traditional-language.json file
simplify("traditional-language.json");
```

## Author

[justforuse](http://justforuse.github.io/)