Compare commits

..

No commits in common. "main" and "v2023.02.23.3" have entirely different histories.

2 changed files with 15 additions and 17 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "mit.db", "name": "mit.db",
"version": "2023.04.12", "version": "2023.02.23.3",
"description": "An easy and quick database", "description": "An easy and quick database",
"main": "build/index.js", "main": "build/index.js",
"types": "build/index.d.ts", "types": "build/index.d.ts",
@ -11,7 +11,7 @@
"type": "git", "type": "git",
"url": "git+https://github.com/ThunderNetworkRaD/mit.db.git" "url": "git+https://github.com/ThunderNetworkRaD/mit.db.git"
}, },
"author": "ThunderNetworkRaD | Killer Boss Original", "author": "Thunder Network Development | Killer Boss Original",
"license": "ISC", "license": "ISC",
"bugs": { "bugs": {
"url": "https://github.com/ThunderNetworkRaD/mit.db/issues" "url": "https://github.com/ThunderNetworkRaD/mit.db/issues"
@ -20,6 +20,6 @@
"devDependencies": { "devDependencies": {
"@types/node": "^18.14.0", "@types/node": "^18.14.0",
"tslib": "^2.4.1", "tslib": "^2.4.1",
"typescript": "^5.0.3" "typescript": "^4.9.5"
} }
} }

View file

@ -5,9 +5,6 @@ const writeDB = promisify(fs.writeFile);
class MitDB { class MitDB {
readonly db; readonly db;
filename: string;
options: any;
dirname: string;
/** /**
* @constructor * @constructor
@ -16,18 +13,17 @@ class MitDB {
* @param options Options to pass in the constructor * @param options Options to pass in the constructor
* @param options.dirname where to put the database? * @param options.dirname where to put the database?
*/ */
constructor(filename: string, options?: { dirname: string }) { constructor(fn: string, options?: { dirname: string }) {
let dirname;
if (options && options.dirname) { if (options && options.dirname) {
this.dirname = options.dirname; dirname = options.dirname;
} else { } else {
this.dirname = 'data'; dirname = 'data';
} }
this.filename = filename; if (!fs.existsSync(dirname)) fs.mkdirSync(dirname);
if (!fs.existsSync(this.dirname)) fs.mkdirSync(this.dirname); this.db = `./${dirname}/${fn}`
this.db = `./${this.dirname}/${this.filename}`;
} }
/** /**
@ -101,13 +97,13 @@ class MitDB {
/** /**
* *
* @param callbackfilename * @param callbackfn
*/ */
forEach(callback: (value: any, key: any) => void) { forEach(callback: (value: any, key: any, map: Map<any, any>) => void) {
const file = fs.readFileSync(this.db); const file = fs.readFileSync(this.db);
const data: any[] = JSON.parse(file.toString()); const data: any[] = JSON.parse(file.toString());
data.forEach((pair: any) => callback(pair.value, pair.key)); data.forEach((pair: any) => callback(pair.value, pair.key, map));
} }
/** /**
@ -126,6 +122,8 @@ class MitDB {
await writeDB(this.db, JSON.stringify(data)); await writeDB(this.db, JSON.stringify(data));
return true; return true;
} else if (!map) {
return false;
} }
} catch {} } catch {}
return 'error'; return 'error';