@edjopato/datastore
Advanced tools
Comparing version
@@ -1,2 +0,2 @@ | ||
import { Dictionary, KeyValueStorage } from './type'; | ||
import { KeyValueStorage } from './type'; | ||
export declare class KeyValueInMemoryFile<T> implements KeyValueStorage<T> { | ||
@@ -6,3 +6,3 @@ private readonly _filepath; | ||
constructor(_filepath: string); | ||
entries(): Dictionary<T>; | ||
entries(): Record<string, T | undefined>; | ||
keys(): readonly string[]; | ||
@@ -9,0 +9,0 @@ get(key: string): T | undefined; |
@@ -7,4 +7,14 @@ "use strict"; | ||
constructor(_filepath) { | ||
this._filepath = _filepath; | ||
this._inMemoryStorage = {}; | ||
Object.defineProperty(this, "_filepath", { | ||
enumerable: true, | ||
configurable: true, | ||
writable: true, | ||
value: _filepath | ||
}); | ||
Object.defineProperty(this, "_inMemoryStorage", { | ||
enumerable: true, | ||
configurable: true, | ||
writable: true, | ||
value: {} | ||
}); | ||
if (fs_1.existsSync(this._filepath)) { | ||
@@ -11,0 +21,0 @@ const raw = fs_1.readFileSync(this._filepath, 'utf8'); |
@@ -1,2 +0,2 @@ | ||
import { Dictionary, KeyValueStorage } from './type'; | ||
import { KeyValueStorage } from './type'; | ||
export declare class KeyValueInMemoryFiles<T> implements KeyValueStorage<T> { | ||
@@ -6,3 +6,3 @@ private readonly _directory; | ||
constructor(_directory: string); | ||
entries(): Dictionary<T>; | ||
entries(): Record<string, T | undefined>; | ||
keys(): readonly string[]; | ||
@@ -9,0 +9,0 @@ get(key: string): T | undefined; |
@@ -7,4 +7,14 @@ "use strict"; | ||
constructor(_directory) { | ||
this._directory = _directory; | ||
this._inMemoryStorage = {}; | ||
Object.defineProperty(this, "_directory", { | ||
enumerable: true, | ||
configurable: true, | ||
writable: true, | ||
value: _directory | ||
}); | ||
Object.defineProperty(this, "_inMemoryStorage", { | ||
enumerable: true, | ||
configurable: true, | ||
writable: true, | ||
value: {} | ||
}); | ||
fs_1.mkdirSync(_directory, { recursive: true }); | ||
@@ -11,0 +21,0 @@ const entries = this._listFromFS(); |
@@ -1,5 +0,5 @@ | ||
import { Dictionary, KeyValueStorage } from './type'; | ||
import { KeyValueStorage } from './type'; | ||
export declare class KeyValueInMemory<T> implements KeyValueStorage<T> { | ||
private _inMemoryStorage; | ||
entries(): Dictionary<T>; | ||
entries(): Record<string, T | undefined>; | ||
keys(): readonly string[]; | ||
@@ -6,0 +6,0 @@ get(key: string): T | undefined; |
@@ -5,3 +5,8 @@ "use strict"; | ||
constructor() { | ||
this._inMemoryStorage = {}; | ||
Object.defineProperty(this, "_inMemoryStorage", { | ||
enumerable: true, | ||
configurable: true, | ||
writable: true, | ||
value: {} | ||
}); | ||
} | ||
@@ -8,0 +13,0 @@ entries() { |
import { MaybePromise } from '../types'; | ||
export declare type Dictionary<T> = { | ||
[key: string]: T; | ||
}; | ||
export interface KeyValueStorage<T> { | ||
delete(key: string): MaybePromise<void>; | ||
entries(): MaybePromise<Dictionary<T>>; | ||
entries(): MaybePromise<Record<string, T | undefined>>; | ||
get(key: string): MaybePromise<T | undefined>; | ||
@@ -9,0 +6,0 @@ keys(): MaybePromise<readonly string[]>; |
@@ -7,3 +7,14 @@ "use strict"; | ||
constructor(_filepath) { | ||
this._filepath = _filepath; | ||
Object.defineProperty(this, "_filepath", { | ||
enumerable: true, | ||
configurable: true, | ||
writable: true, | ||
value: _filepath | ||
}); | ||
Object.defineProperty(this, "_content", { | ||
enumerable: true, | ||
configurable: true, | ||
writable: true, | ||
value: _content | ||
}); | ||
if (fs_1.existsSync(this._filepath)) { | ||
@@ -10,0 +21,0 @@ const raw = fs_1.readFileSync(this._filepath, 'utf8'); |
{ | ||
"name": "@edjopato/datastore", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"description": "Handles different ways to store data within NodeJS", | ||
@@ -36,10 +36,10 @@ "license": "MIT", | ||
"devDependencies": { | ||
"@sindresorhus/tsconfig": "^0.4.0", | ||
"@sindresorhus/tsconfig": "^0.6.0", | ||
"@types/node": "^12.0.2", | ||
"@typescript-eslint/eslint-plugin": "^2.3.1", | ||
"@typescript-eslint/parser": "^2.3.1", | ||
"@typescript-eslint/eslint-plugin": "^2.11.0", | ||
"@typescript-eslint/parser": "^2.11.0", | ||
"del-cli": "^3.0.0", | ||
"eslint-config-xo-typescript": "^0.18.0", | ||
"typescript": "^3.3.3", | ||
"xo": "^0.24.0" | ||
"eslint-config-xo-typescript": "^0.23.0", | ||
"typescript": "^3.7.3", | ||
"xo": "^0.25.3" | ||
}, | ||
@@ -53,2 +53,3 @@ "xo": { | ||
"rules": { | ||
"@typescript-eslint/no-dynamic-delete": "off", | ||
"@typescript-eslint/semi": [ | ||
@@ -55,0 +56,0 @@ "error", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
16898
6.61%262
14.41%