LowDB 轻量级 JSON 本地数据库( 二 )


constructor() {
// ...
}
 
read() {
// Should return data (object or array) or a Promise
}
 
write(data) {
// Should return nothing or a Promise
}
}
 
const adapter = new MyStorage(args)
const db = low(adapter);
 
 
==============================================
 
英文官网介绍,更加简洁
 
Installnpm install lowdbUsage


推荐阅读