mirror of
https://github.com/leanote/desktop-app.git
synced 2025-10-21 11:17:52 +00:00
package
This commit is contained in:
27
node_modules/db.js
generated
vendored
27
node_modules/db.js
generated
vendored
@@ -1,27 +0,0 @@
|
||||
var Datastore = require('nedb');
|
||||
var path = require('path');
|
||||
var Evt = require('evt');
|
||||
|
||||
// 数据库初始化
|
||||
// var dbPath = require('nw.gui').App.dataPath + '/nedb';
|
||||
// var dbPath = Evt.getBasePath() + '/Users/life/Library/Application Support/Leanote' + '/nedb';
|
||||
var dbPath = Evt.getBasePath() + '/nedb';
|
||||
console.error(dbPath);
|
||||
|
||||
// test
|
||||
if(dbPath.length < 6) {
|
||||
var dbPath = '/Users/life/Library/Application Support/Leanote' + '/nedb';
|
||||
}
|
||||
|
||||
// console.log(dbPath);
|
||||
// g, 表全局环境
|
||||
var db = {};
|
||||
var dbNames = ['notebooks', 'notes', 'users', 'tags', 'images', 'attachs', 'noteHistories', 'g'];
|
||||
for(var i in dbNames) {
|
||||
var name = dbNames[i];
|
||||
var p = path.join(dbPath, name + '.db');
|
||||
console.log(p);
|
||||
db[name] = new Datastore({ filename: p, autoload: true });
|
||||
}
|
||||
module.exports = db;
|
||||
console.log('db init');
|
Reference in New Issue
Block a user