Skip to content

Latest commit

 

History

History
executable file
·
54 lines (37 loc) · 715 Bytes

README.md

File metadata and controls

executable file
·
54 lines (37 loc) · 715 Bytes

Install

npm install node-edict

or

npm install https://github.com/kevincobain2000/node-edict/tarball/master

Usage

var Edict = require("node-edict");
edict = new Edict;

Note

If running for the first time then please wait for around 1 minute while the parser reads the dict file and enters the entries to REDIS.

Run the following

edict = new Edict;
edict.setDB(2);
edict.redisSetEntries(function(callback){
    
});

Once the Redis is set Already

edict.setDB(2); //selects 2 on Redis
edict.get('私',function(result){ 
    console.log(result.Gloss);
    console.log(result.PRON);
}); 

Must

Redis server running