和尚:明智的MongoDB API 源码
僧 一个很小的层,为Node.JS中的MongoDB使用提供了简单而实质性的可用性改进。 注意:和尚2.x删除对节点<0.12的支持。 如果您仍在使用早期版本,请坚持使用僧侣1.x const db = require ( 'monk' ) ( 'localhost/mydb' ) // or // const db = require('monk')('user:pass@localhost:port/mydb') const users = db . get ( 'users' ) users . index ( 'name last' ) users . insert ( { name : 'Tobi' , bigdata : { } } ) users . find ( { name : 'Loki' } , '-bigdata' ) . then ( function (
用户评论