node-sqlicipher - Asynchronous, non-blocking SQLite3 + SQLcipher bindings for Node.js 0.2-0.4 (versions 2.0.x), 0.6.13+, 0.8.x, and 0.10.x (versions 2.1.x). it's a fork of node-sqlite3 with sqlcipher library
varsqlite3=require('sqlcipher').verbose();vardb=newsqlite3.Database('test.db','password');db.serialize(function(){db.run("CREATE TABLE lorem (info TEXT)");varstmt=db.prepare("INSERT INTO lorem VALUES (?)");for(vari=0;i<10;i++){stmt.run("Ipsum "+i);}stmt.finalize();db.each("SELECT rowid AS id, info FROM lorem",function(err,row){console.log(row.id+": "+row.info);});});db.close();Currently you need to have libsqlcipher.so.0.8.6 compiled and installed in your system library path !!
Will be fixed soon