Compare commits
No commits in common. "main" and "v2023.02.23.4" have entirely different histories.
main
...
v2023.02.2
2 changed files with 11 additions and 15 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "mit.db",
|
"name": "mit.db",
|
||||||
"version": "2023.04.12",
|
"version": "2023.02.23.4",
|
||||||
"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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
18
src/index.ts
18
src/index.ts
|
@ -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,7 +97,7 @@ class MitDB {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param callbackfilename
|
* @param callbackfn
|
||||||
*/
|
*/
|
||||||
forEach(callback: (value: any, key: any) => void) {
|
forEach(callback: (value: any, key: any) => void) {
|
||||||
const file = fs.readFileSync(this.db);
|
const file = fs.readFileSync(this.db);
|
||||||
|
|
Loading…
Reference in a new issue