New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

gulp-opencc

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

gulp-opencc

A gulp plugin for converting Chinese based on OpenCC

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

gulp-opencc

gulp GitHub license

npm Build Status npm

A Gulp plugin for convert chinese based on OpenCC.

Usage

This plugin is mainly used for converting Chinese in Gulp tasks defined in the file, gulpfile.js. As it is based on OpenCC, you can use it with passing options, in which you can specify the type of converting:

  • s2t: Simplified Chinese to Traditional Chinese 簡體到繁體
  • t2s: Traditional Chinese to Simplified Chinese 繁體到簡體
  • s2tw: Simplified Chinese to Traditional Chinese (Taiwan Standard) 簡體到臺灣正體
  • tw2s: Traditional Chinese (Taiwan Standard) to Simplified Chinese 臺灣正體到簡體
  • s2hk: Simplified Chinese to Traditional Chinese (Hong Kong Standard) 簡體到香港繁體(香港小學學習字詞表標準)
  • hk2s: Traditional Chinese (Hong Kong Standard) to Simplified Chinese 香港繁體(香港小學學習字詞表標準)到簡體
  • s2twp: Simplified Chinese to Traditional Chinese (Taiwan Standard) with Taiwanese idiom 簡體到繁體(臺灣正體標準)並轉換爲臺灣常用詞彙
  • tw2sp: Traditional Chinese (Taiwan Standard) to Simplified Chinese with Mainland Chinese idiom 繁體(臺灣正體標準)到簡體並轉換爲中國大陸常用詞彙
  • t2tw: Traditional Chinese (OpenCC Standard) to Taiwan Standard 繁體(OpenCC 標準)到臺灣正體
  • t2hk: Traditional Chinese (OpenCC Standard) to Hong Kong Standard 繁體(OpenCC 標準)到香港繁體(香港小學學習字詞表標準)
/** gulpfile.js */
const opencc = require('gulp-opencc');

gulp.task('convert-chinese', () => {
    gulp.src('zh.json')
        .pipe(opencc.default({
            type: 's2tw'
        }))
        .pipe(rename('zh_TW.json'))
        .pipe(gulp.dest('build/'));
});

Release History

  • ==================== 1.0.0 Initial release ====================
    • 1.0.1 doc: update the document of this project

:fuelpump: How to contribute

Have an idea? Found a bug? See how to contribute.

:scroll: License

MIT © aleen42

Keywords

opencc

FAQs

Package last updated on 07 Nov 2017

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