Open Source Library, Converting Misspelled English characters into Korean letters (& vice versa)
- 영타를 한글로 쳤을 때, 혹은 한타를 영어로 변환해주는 기능을 가진 자바스크립트 오픈소스 라이브러리입니다.
- Inko Offical Website has been launched!
- v1.0.3 (2018.08.07) : #7 영타 -> 한글로 변환 시켜주는 로직 수정. 알파벳 소문자 26개, 대문자 26개 총 52개에 맞춰서 한글과 매핑함.
- v1.0.4 (2018.08.11) : #4, #8 Gulp로 workflow 자동화 (inko.min.js 파일 생성), Bower에 inko 등록
- v1.0.5 (2018.08.11) : inko.js에서
package.json
파일을 import하는 부분 제거
- Inko CLI - Use Inko on the command line.
npm install inko
yarn add inko
CDN
<script src="https://cdn.jsdelivr.net/npm/[email protected]/inko.min.js"></script>
Bower
bower install inko
var Inko = require('inko');
var inko = Inko();
inko.en2ko('dkssudgktpdy tptkd!');
// 안녕하세요 세상!
inko.ko2en('ㅗ디ㅣㅐ 재깅!');
// hello world!
- develop @types/inko module for typescript
- add gulp file to minify inko.js or do something
- launch inkojs official introduction website
- improve inkojs logo
이 오픈소스 프로젝트에 누구나 기여할 수 있습니다. 기여하고 싶은 분들은 이 레포지토리를 포크한 후 풀리퀘스트 요청해주세요!
Inko.js is released under the MIT License. See LICENSE file for details.