Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/zhangchen915/mdict-ts


https://github.com/zhangchen915/mdict-ts

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

## mdict-ts

mdict (*.mdx, *.mdd) file reader
rewrite form [mdict-js](https://github.com/fengdh/mdict-js)

#### Note:

Because of TextDecoder API , mdict-ts don't support IE and Edge , but you can use polyfill such as `text-encoding`.

#### Installation:

`npm i mdict-ts`

#### Usage:

```ts
import {Mdict} from 'mdict-ts'
const mdict = new Mdict(file: File)

mdict.getWordList(query, offset?): Promise>
mdict.getDefinition(offset): Promise
```