flat-cache 4.0.1 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -4
- package/package.json +20 -22
- package/src/cache.js +120 -119
- package/src/del.js +24 -23
- package/src/utils.js +20 -19
- package/changelog.md +0 -278
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flat-cache",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "A stupidly simple key/value storage using files to persist some data",
|
|
5
5
|
"repository": "jaredwray/flat-cache",
|
|
6
6
|
"license": "MIT",
|
|
@@ -15,25 +15,18 @@
|
|
|
15
15
|
"src/utils.js"
|
|
16
16
|
],
|
|
17
17
|
"engines": {
|
|
18
|
-
"node": ">=
|
|
18
|
+
"node": ">=18"
|
|
19
19
|
},
|
|
20
20
|
"precommit": [
|
|
21
|
-
"npm run
|
|
21
|
+
"npm run test"
|
|
22
22
|
],
|
|
23
23
|
"prepush": [
|
|
24
|
-
"npm run
|
|
24
|
+
"npm run test"
|
|
25
25
|
],
|
|
26
26
|
"scripts": {
|
|
27
|
-
"eslint": "eslint --cache --cache-location=node_modules/.cache/ ./src/**/*.js ./test/**/*.js",
|
|
28
27
|
"clean": "rimraf ./node_modules ./package-lock.json ./yarn.lock ./coverage",
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"check": "npm run eslint",
|
|
32
|
-
"verify": "npm run eslint && npm run test:cache",
|
|
33
|
-
"test:cache": "c8 mocha -R spec test/specs",
|
|
34
|
-
"test:ci:cache": "c8 --reporter=lcov mocha -R spec test/specs",
|
|
35
|
-
"test": "npm run verify --silent",
|
|
36
|
-
"format": "prettier --write ."
|
|
28
|
+
"test:ci": "xo && c8 --reporter=lcov mocha -R spec test/specs",
|
|
29
|
+
"test": "xo --fix && c8 mocha -R spec test/specs"
|
|
37
30
|
},
|
|
38
31
|
"keywords": [
|
|
39
32
|
"json cache",
|
|
@@ -46,18 +39,23 @@
|
|
|
46
39
|
"devDependencies": {
|
|
47
40
|
"c8": "^9.1.0",
|
|
48
41
|
"chai": "^4.3.10",
|
|
49
|
-
"eslint": "^8.56.0",
|
|
50
|
-
"eslint-config-prettier": "^9.1.0",
|
|
51
|
-
"eslint-plugin-mocha": "^10.2.0",
|
|
52
42
|
"glob-expand": "^0.2.1",
|
|
53
|
-
"mocha": "^10.
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"write": "^2.0.0"
|
|
43
|
+
"mocha": "^10.4.0",
|
|
44
|
+
"rimraf": "^5.0.7",
|
|
45
|
+
"sinon": "^18.0.0",
|
|
46
|
+
"webpack": "^5.91.0",
|
|
47
|
+
"write": "^2.0.0",
|
|
48
|
+
"xo": "^0.58.0"
|
|
58
49
|
},
|
|
59
50
|
"dependencies": {
|
|
60
|
-
"flatted": "^3.
|
|
51
|
+
"flatted": "^3.3.1",
|
|
61
52
|
"keyv": "^4.5.4"
|
|
53
|
+
},
|
|
54
|
+
"xo": {
|
|
55
|
+
"rules": {
|
|
56
|
+
"unicorn/prefer-module": "off",
|
|
57
|
+
"n/prefer-global/process": "off",
|
|
58
|
+
"unicorn/prevent-abbreviations": "off"
|
|
59
|
+
}
|
|
62
60
|
}
|
|
63
61
|
}
|
package/src/cache.js
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
const
|
|
1
|
+
/* eslint-disable unicorn/no-this-assignment, no-unused-expressions */
|
|
2
|
+
const path = require('node:path');
|
|
3
|
+
const fs = require('node:fs');
|
|
3
4
|
const Keyv = require('keyv');
|
|
4
|
-
const {
|
|
5
|
-
const {
|
|
5
|
+
const {writeJSON, tryParse} = require('./utils.js');
|
|
6
|
+
const {del} = require('./del.js');
|
|
6
7
|
|
|
7
8
|
const cache = {
|
|
8
|
-
|
|
9
|
+
/**
|
|
9
10
|
* Load a cache identified by the given Id. If the element does not exists, then initialize an empty
|
|
10
11
|
* cache storage. If specified `cacheDir` will be used as the directory to persist the data to. If omitted
|
|
11
12
|
* then the cache module directory `./cache` will be used instead
|
|
@@ -14,151 +15,151 @@ const cache = {
|
|
|
14
15
|
* @param docId {String} the id of the cache, would also be used as the name of the file cache
|
|
15
16
|
* @param [cacheDir] {String} directory for the cache entry
|
|
16
17
|
*/
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
load(documentId, cacheDir) {
|
|
19
|
+
const me = this;
|
|
20
|
+
me.keyv = new Keyv();
|
|
20
21
|
|
|
21
|
-
|
|
22
|
-
|
|
22
|
+
me.__visited = {};
|
|
23
|
+
me.__persisted = {};
|
|
23
24
|
|
|
24
|
-
|
|
25
|
+
me._pathToFile = cacheDir ? path.resolve(cacheDir, documentId) : path.resolve(__dirname, '../.cache/', documentId);
|
|
25
26
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
27
|
+
if (fs.existsSync(me._pathToFile)) {
|
|
28
|
+
me._persisted = tryParse(me._pathToFile, {});
|
|
29
|
+
}
|
|
30
|
+
},
|
|
30
31
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
32
|
+
get _persisted() {
|
|
33
|
+
return this.__persisted;
|
|
34
|
+
},
|
|
34
35
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
set _persisted(value) {
|
|
37
|
+
this.__persisted = value;
|
|
38
|
+
},
|
|
38
39
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
40
|
+
get _visited() {
|
|
41
|
+
return this.__visited;
|
|
42
|
+
},
|
|
42
43
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
44
|
+
set _visited(value) {
|
|
45
|
+
this.__visited = value;
|
|
46
|
+
},
|
|
46
47
|
|
|
47
|
-
|
|
48
|
+
/**
|
|
48
49
|
* Load the cache from the provided file
|
|
49
50
|
* @method loadFile
|
|
50
51
|
* @param {String} pathToFile the path to the file containing the info for the cache
|
|
51
52
|
*/
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
53
|
+
loadFile(pathToFile) {
|
|
54
|
+
const me = this;
|
|
55
|
+
const dir = path.dirname(pathToFile);
|
|
56
|
+
const fName = path.basename(pathToFile);
|
|
56
57
|
|
|
57
|
-
|
|
58
|
-
|
|
58
|
+
me.load(fName, dir);
|
|
59
|
+
},
|
|
59
60
|
|
|
60
|
-
|
|
61
|
+
/**
|
|
61
62
|
* Returns the entire persisted object
|
|
62
63
|
* @method all
|
|
63
64
|
* @returns {*}
|
|
64
65
|
*/
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
*
|
|
66
|
+
all() {
|
|
67
|
+
return this._persisted;
|
|
68
|
+
},
|
|
69
|
+
|
|
70
|
+
keys() {
|
|
71
|
+
return Object.keys(this._persisted);
|
|
72
|
+
},
|
|
73
|
+
/**
|
|
74
|
+
* Sets a key to a given value
|
|
74
75
|
* @method setKey
|
|
75
76
|
* @param key {string} the key to set
|
|
76
77
|
* @param value {object} the value of the key. Could be any object that can be serialized with JSON.stringify
|
|
77
78
|
*/
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
*
|
|
79
|
+
setKey(key, value) {
|
|
80
|
+
this._visited[key] = true;
|
|
81
|
+
this._persisted[key] = value;
|
|
82
|
+
},
|
|
83
|
+
/**
|
|
84
|
+
* Remove a given key from the cache
|
|
84
85
|
* @method removeKey
|
|
85
86
|
* @param key {String} the key to remove from the object
|
|
86
87
|
*/
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
88
|
+
removeKey(key) {
|
|
89
|
+
delete this._visited[key]; // Esfmt-ignore-line
|
|
90
|
+
delete this._persisted[key]; // Esfmt-ignore-line
|
|
91
|
+
},
|
|
92
|
+
/**
|
|
92
93
|
* Return the value of the provided key
|
|
93
94
|
* @method getKey
|
|
94
95
|
* @param key {String} the name of the key to retrieve
|
|
95
96
|
* @returns {*} the value from the key
|
|
96
97
|
*/
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
98
|
+
getKey(key) {
|
|
99
|
+
this._visited[key] = true;
|
|
100
|
+
return this._persisted[key];
|
|
101
|
+
},
|
|
101
102
|
|
|
102
|
-
|
|
103
|
+
/**
|
|
103
104
|
* Remove keys that were not accessed/set since the
|
|
104
105
|
* last time the `prune` method was called.
|
|
105
106
|
* @method _prune
|
|
106
107
|
* @private
|
|
107
108
|
*/
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
109
|
+
_prune() {
|
|
110
|
+
const me = this;
|
|
111
|
+
const object = {};
|
|
111
112
|
|
|
112
|
-
|
|
113
|
+
const keys = Object.keys(me._visited);
|
|
113
114
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
115
|
+
// No keys visited for either get or set value
|
|
116
|
+
if (keys.length === 0) {
|
|
117
|
+
return;
|
|
118
|
+
}
|
|
118
119
|
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
120
|
+
for (const key of keys) {
|
|
121
|
+
object[key] = me._persisted[key];
|
|
122
|
+
}
|
|
122
123
|
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
124
|
+
me._visited = {};
|
|
125
|
+
me._persisted = object;
|
|
126
|
+
},
|
|
126
127
|
|
|
127
|
-
|
|
128
|
+
/**
|
|
128
129
|
* Save the state of the cache identified by the docId to disk
|
|
129
130
|
* as a JSON structure
|
|
130
131
|
* @param [noPrune=false] {Boolean} whether to remove from cache the non visited files
|
|
131
132
|
* @method save
|
|
132
133
|
*/
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
*
|
|
134
|
+
save(noPrune) {
|
|
135
|
+
const me = this;
|
|
136
|
+
!noPrune && me._prune();
|
|
137
|
+
writeJSON(me._pathToFile, me._persisted);
|
|
138
|
+
},
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* Remove the file where the cache is persisted
|
|
141
142
|
* @method removeCacheFile
|
|
142
143
|
* @return {Boolean} true or false if the file was successfully deleted
|
|
143
144
|
*/
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
145
|
+
removeCacheFile() {
|
|
146
|
+
return del(this._pathToFile);
|
|
147
|
+
},
|
|
148
|
+
/**
|
|
148
149
|
* Destroy the file cache and cache content.
|
|
149
150
|
* @method destroy
|
|
150
151
|
*/
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
152
|
+
destroy() {
|
|
153
|
+
const me = this;
|
|
154
|
+
me._visited = {};
|
|
155
|
+
me._persisted = {};
|
|
155
156
|
|
|
156
|
-
|
|
157
|
-
|
|
157
|
+
me.removeCacheFile();
|
|
158
|
+
},
|
|
158
159
|
};
|
|
159
160
|
|
|
160
161
|
module.exports = {
|
|
161
|
-
|
|
162
|
+
/**
|
|
162
163
|
* Alias for create. Should be considered depreacted. Will be removed in next releases
|
|
163
164
|
*
|
|
164
165
|
* @method load
|
|
@@ -166,11 +167,11 @@ module.exports = {
|
|
|
166
167
|
* @param [cacheDir] {String} directory for the cache entry
|
|
167
168
|
* @returns {cache} cache instance
|
|
168
169
|
*/
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
170
|
+
load(documentId, cacheDir) {
|
|
171
|
+
return this.create(documentId, cacheDir);
|
|
172
|
+
},
|
|
172
173
|
|
|
173
|
-
|
|
174
|
+
/**
|
|
174
175
|
* Load a cache identified by the given Id. If the element does not exists, then initialize an empty
|
|
175
176
|
* cache storage.
|
|
176
177
|
*
|
|
@@ -179,18 +180,18 @@ module.exports = {
|
|
|
179
180
|
* @param [cacheDir] {String} directory for the cache entry
|
|
180
181
|
* @returns {cache} cache instance
|
|
181
182
|
*/
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
183
|
+
create(documentId, cacheDir) {
|
|
184
|
+
const object = Object.create(cache);
|
|
185
|
+
object.load(documentId, cacheDir);
|
|
186
|
+
return object;
|
|
187
|
+
},
|
|
188
|
+
|
|
189
|
+
createFromFile(filePath) {
|
|
190
|
+
const object = Object.create(cache);
|
|
191
|
+
object.loadFile(filePath);
|
|
192
|
+
return object;
|
|
193
|
+
},
|
|
194
|
+
/**
|
|
194
195
|
* Clear the cache identified by the given id. Caches stored in a different cache directory can be deleted directly
|
|
195
196
|
*
|
|
196
197
|
* @method clearCache
|
|
@@ -198,17 +199,17 @@ module.exports = {
|
|
|
198
199
|
* @param cacheDir {String} the directory where the cache file was written
|
|
199
200
|
* @returns {Boolean} true if the cache folder was deleted. False otherwise
|
|
200
201
|
*/
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
202
|
+
clearCacheById(documentId, cacheDir) {
|
|
203
|
+
const filePath = cacheDir ? path.resolve(cacheDir, documentId) : path.resolve(__dirname, '../.cache/', documentId);
|
|
204
|
+
return del(filePath);
|
|
205
|
+
},
|
|
206
|
+
/**
|
|
206
207
|
* Remove all cache stored in the cache directory
|
|
207
208
|
* @method clearAll
|
|
208
209
|
* @returns {Boolean} true if the cache folder was deleted. False otherwise
|
|
209
210
|
*/
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
211
|
+
clearAll(cacheDir) {
|
|
212
|
+
const filePath = cacheDir ? path.resolve(cacheDir) : path.resolve(__dirname, '../.cache/');
|
|
213
|
+
return del(filePath);
|
|
214
|
+
},
|
|
214
215
|
};
|
package/src/del.js
CHANGED
|
@@ -1,30 +1,31 @@
|
|
|
1
|
-
const fs = require('fs');
|
|
2
|
-
const path = require('path');
|
|
1
|
+
const fs = require('node:fs');
|
|
2
|
+
const path = require('node:path');
|
|
3
3
|
|
|
4
4
|
function del(targetPath) {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
if (!fs.existsSync(targetPath)) {
|
|
6
|
+
return false;
|
|
7
|
+
}
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
9
|
+
try {
|
|
10
|
+
if (fs.statSync(targetPath).isDirectory()) {
|
|
11
|
+
// If it's a directory, delete its contents first
|
|
12
|
+
for (const file of fs.readdirSync(targetPath)) {
|
|
13
|
+
const currentPath = path.join(targetPath, file);
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
fs.rmdirSync(targetPath); // Delete the now-empty directory
|
|
20
|
-
} else {
|
|
21
|
-
fs.unlinkSync(targetPath); // If it's a file, delete it directly
|
|
22
|
-
}
|
|
15
|
+
if (fs.statSync(currentPath).isFile()) {
|
|
16
|
+
fs.unlinkSync(currentPath); // Delete file
|
|
17
|
+
}
|
|
18
|
+
}
|
|
23
19
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
20
|
+
fs.rmdirSync(targetPath); // Delete the now-empty directory
|
|
21
|
+
} else {
|
|
22
|
+
fs.unlinkSync(targetPath); // If it's a file, delete it directly
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
return true;
|
|
26
|
+
} catch (error) {
|
|
27
|
+
console.error(`Error while deleting ${targetPath}: ${error.message}`);
|
|
28
|
+
}
|
|
28
29
|
}
|
|
29
30
|
|
|
30
|
-
module.exports = {
|
|
31
|
+
module.exports = {del};
|
package/src/utils.js
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
const fs = require('fs');
|
|
2
|
-
const path = require('path');
|
|
1
|
+
const fs = require('node:fs');
|
|
2
|
+
const path = require('node:path');
|
|
3
3
|
const flatted = require('flatted');
|
|
4
4
|
|
|
5
5
|
function tryParse(filePath, defaultValue) {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
6
|
+
let result;
|
|
7
|
+
try {
|
|
8
|
+
result = readJSON(filePath);
|
|
9
|
+
} catch {
|
|
10
|
+
result = defaultValue;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
return result;
|
|
13
14
|
}
|
|
14
15
|
|
|
15
16
|
/**
|
|
@@ -19,11 +20,11 @@ function tryParse(filePath, defaultValue) {
|
|
|
19
20
|
* @returns {*} parse result
|
|
20
21
|
*/
|
|
21
22
|
function readJSON(filePath) {
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
23
|
+
return flatted.parse(
|
|
24
|
+
fs.readFileSync(filePath, {
|
|
25
|
+
encoding: 'utf8',
|
|
26
|
+
}),
|
|
27
|
+
);
|
|
27
28
|
}
|
|
28
29
|
|
|
29
30
|
/**
|
|
@@ -33,10 +34,10 @@ function readJSON(filePath) {
|
|
|
33
34
|
* @param {*} data Object to serialize
|
|
34
35
|
*/
|
|
35
36
|
function writeJSON(filePath, data) {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
37
|
+
fs.mkdirSync(path.dirname(filePath), {
|
|
38
|
+
recursive: true,
|
|
39
|
+
});
|
|
40
|
+
fs.writeFileSync(filePath, flatted.stringify(data));
|
|
40
41
|
}
|
|
41
42
|
|
|
42
|
-
module.exports = {
|
|
43
|
+
module.exports = {tryParse, readJSON, writeJSON};
|
package/changelog.md
DELETED
|
@@ -1,278 +0,0 @@
|
|
|
1
|
-
# flat-cache - Changelog
|
|
2
|
-
|
|
3
|
-
## v3.0.4
|
|
4
|
-
|
|
5
|
-
- **Refactoring**
|
|
6
|
-
- add files by name to the list of exported files - [89a2698](https://github.com/royriojas/flat-cache/commit/89a2698), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 02:35:39
|
|
7
|
-
|
|
8
|
-
## v3.0.3
|
|
9
|
-
|
|
10
|
-
- **Bug Fixes**
|
|
11
|
-
- Fix wrong eslint command - [f268e42](https://github.com/royriojas/flat-cache/commit/f268e42), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 02:15:04
|
|
12
|
-
|
|
13
|
-
## v3.0.2
|
|
14
|
-
|
|
15
|
-
- **Refactoring**
|
|
16
|
-
|
|
17
|
-
- Update the files paths - [6983a80](https://github.com/royriojas/flat-cache/commit/6983a80), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 01:58:39
|
|
18
|
-
- Move code to src/ - [18ed6e8](https://github.com/royriojas/flat-cache/commit/18ed6e8), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 01:57:17
|
|
19
|
-
- Change eslint-cache location - [beed74c](https://github.com/royriojas/flat-cache/commit/beed74c), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 01:48:32
|
|
20
|
-
|
|
21
|
-
## v3.0.1
|
|
22
|
-
|
|
23
|
-
- **Refactoring**
|
|
24
|
-
- Remove unused deps - [8c6d9dc](https://github.com/royriojas/flat-cache/commit/8c6d9dc), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 01:43:29
|
|
25
|
-
|
|
26
|
-
## v3.0.0
|
|
27
|
-
|
|
28
|
-
- **Refactoring**
|
|
29
|
-
- Fix engines - [52b824c](https://github.com/royriojas/flat-cache/commit/52b824c), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 01:01:52
|
|
30
|
-
- **Other changes**
|
|
31
|
-
|
|
32
|
-
- Replace write with combination of mkdir and writeFile ([#49](https://github.com/royriojas/flat-cache/issues/49)) - [ef48276](https://github.com/royriojas/flat-cache/commit/ef48276), [Bogdan Chadkin](https://github.com/Bogdan Chadkin), 08/11/2020 00:17:15
|
|
33
|
-
|
|
34
|
-
Node v10 introduced a great "recursive" option for mkdir which allows to
|
|
35
|
-
get rid from mkdirp package and easily rewrite "write" package usage
|
|
36
|
-
with two function calls.
|
|
37
|
-
|
|
38
|
-
https://nodejs.org/api/fs.html#fs_fs_mkdir_path_options_callback
|
|
39
|
-
|
|
40
|
-
- Added a testcase for clearAll ([#48](https://github.com/royriojas/flat-cache/issues/48)) - [45b51ca](https://github.com/royriojas/flat-cache/commit/45b51ca), [Aaron Chen](https://github.com/Aaron Chen), 21/05/2020 08:40:03
|
|
41
|
-
- requet node>=10 - [a5c482c](https://github.com/royriojas/flat-cache/commit/a5c482c), [yumetodo](https://github.com/yumetodo), 10/04/2020 23:14:53
|
|
42
|
-
|
|
43
|
-
thanks @SuperITMan
|
|
44
|
-
|
|
45
|
-
- Update README.md - [29fe40b](https://github.com/royriojas/flat-cache/commit/29fe40b), [Roy Riojas](https://github.com/Roy Riojas), 10/04/2020 20:08:05
|
|
46
|
-
- reduce vulnerability to 1 - [e9db1b2](https://github.com/royriojas/flat-cache/commit/e9db1b2), [yumetodo](https://github.com/yumetodo), 30/03/2020 11:10:43
|
|
47
|
-
- reduce vulnerabilities dependencies to 8 - [b58d196](https://github.com/royriojas/flat-cache/commit/b58d196), [yumetodo](https://github.com/yumetodo), 30/03/2020 10:54:56
|
|
48
|
-
- use prettier instead of esbeautifier - [03b1db7](https://github.com/royriojas/flat-cache/commit/03b1db7), [yumetodo](https://github.com/yumetodo), 30/03/2020 10:27:14
|
|
49
|
-
- update proxyquire - [c2f048d](https://github.com/royriojas/flat-cache/commit/c2f048d), [yumetodo](https://github.com/yumetodo), 30/03/2020 10:16:16
|
|
50
|
-
- update flatted and mocha - [a0e56da](https://github.com/royriojas/flat-cache/commit/a0e56da), [yumetodo](https://github.com/yumetodo), 30/03/2020 09:46:45
|
|
51
|
-
|
|
52
|
-
mocha > mkdirp is updated
|
|
53
|
-
istanble >>> optimist > minimist is not updated
|
|
54
|
-
|
|
55
|
-
- drop support node.js < 10 in develop - [beba691](https://github.com/royriojas/flat-cache/commit/beba691), [yumetodo](https://github.com/yumetodo), 18/03/2020 01:31:09
|
|
56
|
-
|
|
57
|
-
see mkdirp
|
|
58
|
-
|
|
59
|
-
- npm aufit fix(still remains) - [ce166cb](https://github.com/royriojas/flat-cache/commit/ce166cb), [yumetodo](https://github.com/yumetodo), 18/03/2020 01:18:08
|
|
60
|
-
|
|
61
|
-
37 vulnerabilities required manual review and could not be updated
|
|
62
|
-
|
|
63
|
-
- updtate sinon - [9f2d1b6](https://github.com/royriojas/flat-cache/commit/9f2d1b6), [yumetodo](https://github.com/yumetodo), 18/03/2020 01:17:51
|
|
64
|
-
- apply eslint-plugin-mocha - [07343b5](https://github.com/royriojas/flat-cache/commit/07343b5), [yumetodo](https://github.com/yumetodo), 13/03/2020 22:17:21
|
|
65
|
-
- Less strint version check ([#44](https://github.com/royriojas/flat-cache/issues/44)) - [92aca1c](https://github.com/royriojas/flat-cache/commit/92aca1c), [Wojciech Maj](https://github.com/Wojciech Maj), 13/11/2019 16:18:25
|
|
66
|
-
|
|
67
|
-
- Use ^ version matching for production dependencies
|
|
68
|
-
- Run npm audit fix
|
|
69
|
-
|
|
70
|
-
- **Bug Fixes**
|
|
71
|
-
- update dependencies and use eslint directly - [73fbed2](https://github.com/royriojas/flat-cache/commit/73fbed2), [yumetodo](https://github.com/yumetodo), 18/03/2020 01:17:27
|
|
72
|
-
|
|
73
|
-
## v2.0.1
|
|
74
|
-
|
|
75
|
-
- **Refactoring**
|
|
76
|
-
- upgrade node modules to latest versions - [6402ed3](https://github.com/royriojas/flat-cache/commit/6402ed3), [Roy Riojas](https://github.com/Roy Riojas), 08/01/2019 18:47:05
|
|
77
|
-
|
|
78
|
-
## v2.0.0
|
|
79
|
-
|
|
80
|
-
- **Bug Fixes**
|
|
81
|
-
|
|
82
|
-
- upgrade package.json lock file - [8d21c7b](https://github.com/royriojas/flat-cache/commit/8d21c7b), [Roy Riojas](https://github.com/Roy Riojas), 08/01/2019 17:03:13
|
|
83
|
-
- Use the same versions of node_js that eslint use - [8d23379](https://github.com/royriojas/flat-cache/commit/8d23379), [Roy Riojas](https://github.com/Roy Riojas), 08/01/2019 16:25:11
|
|
84
|
-
|
|
85
|
-
- **Other changes**
|
|
86
|
-
|
|
87
|
-
- Replace circular-json with flatted ([#36](https://github.com/royriojas/flat-cache/issues/36)) - [b93aced](https://github.com/royriojas/flat-cache/commit/b93aced), [C. K. Tang](https://github.com/C. K. Tang), 08/01/2019 17:03:01
|
|
88
|
-
- Change JSON parser from circular-json to flatted & 1 more changes ([#37](https://github.com/royriojas/flat-cache/issues/37)) - [745e65a](https://github.com/royriojas/flat-cache/commit/745e65a), [Andy Chen](https://github.com/Andy Chen), 08/01/2019 16:17:20
|
|
89
|
-
|
|
90
|
-
- Change JSON parser from circular-json to flatted & 1 more changes
|
|
91
|
-
- Change JSON parser from circular-json
|
|
92
|
-
- Audited 2 vulnerabilities
|
|
93
|
-
- Update package.json
|
|
94
|
-
- Update Engine require
|
|
95
|
-
- There's a bunch of dependencies in this pkg requires node >=4, so I changed it to 4
|
|
96
|
-
- Remove and add node versions
|
|
97
|
-
- I have seen this pkg is not available with node 0.12 so I removed it
|
|
98
|
-
- I have added a popular used LTS version of node - 10
|
|
99
|
-
|
|
100
|
-
## v1.3.4
|
|
101
|
-
|
|
102
|
-
- **Refactoring**
|
|
103
|
-
- Add del.js and utils.js to the list of files to be beautified - [9d0ca9b](https://github.com/royriojas/flat-cache/commit/9d0ca9b), [Roy Riojas](https://github.com/Roy Riojas), 14/11/2018 12:19:02
|
|
104
|
-
|
|
105
|
-
## v1.3.3
|
|
106
|
-
|
|
107
|
-
- **Refactoring**
|
|
108
|
-
- Make sure package-lock.json is up to date - [a7d2598](https://github.com/royriojas/flat-cache/commit/a7d2598), [Roy Riojas](https://github.com/Roy Riojas), 14/11/2018 11:36:08
|
|
109
|
-
- **Other changes**
|
|
110
|
-
|
|
111
|
-
- Removed the need for del ([#33](https://github.com/royriojas/flat-cache/issues/33)) - [c429012](https://github.com/royriojas/flat-cache/commit/c429012), [S. Gilroy](https://github.com/S. Gilroy), 13/11/2018 13:56:37
|
|
112
|
-
|
|
113
|
-
- Removed the need for del
|
|
114
|
-
|
|
115
|
-
Removed the need for del as newer versions have broken backwards
|
|
116
|
-
compatibility. del mainly uses rimraf for deleting folders
|
|
117
|
-
and files, replaceing it with rimraf only is a minimal change.
|
|
118
|
-
|
|
119
|
-
- Disable glob on rimraf calls
|
|
120
|
-
- Added glob disable to wrong call
|
|
121
|
-
- Wrapped rimraf to simplify solution
|
|
122
|
-
|
|
123
|
-
## v1.3.2
|
|
124
|
-
|
|
125
|
-
- **Refactoring**
|
|
126
|
-
- remove yarn.lock file - [704c6c4](https://github.com/royriojas/flat-cache/commit/704c6c4), [Roy Riojas](https://github.com/Roy Riojas), 07/11/2018 15:41:08
|
|
127
|
-
- **Other changes**
|
|
128
|
-
|
|
129
|
-
- replace circular-json with flatted ([#23](https://github.com/royriojas/flat-cache/issues/23))" - [db12d74](https://github.com/royriojas/flat-cache/commit/db12d74), [Roy Riojas](https://github.com/Roy Riojas), 07/11/2018 15:40:39
|
|
130
|
-
|
|
131
|
-
This reverts commit 00f689277a75e85fef28e6a048fad227afc525e6.
|
|
132
|
-
|
|
133
|
-
## v1.3.1
|
|
134
|
-
|
|
135
|
-
- **Refactoring**
|
|
136
|
-
- upgrade deps to remove some security warnings - [f405719](https://github.com/royriojas/flat-cache/commit/f405719), [Roy Riojas](https://github.com/Roy Riojas), 06/11/2018 12:07:31
|
|
137
|
-
- **Bug Fixes**
|
|
138
|
-
- replace circular-json with flatted ([#23](https://github.com/royriojas/flat-cache/issues/23)) - [00f6892](https://github.com/royriojas/flat-cache/commit/00f6892), [Terry](https://github.com/Terry), 05/11/2018 18:44:16
|
|
139
|
-
- **Other changes**
|
|
140
|
-
|
|
141
|
-
- update del to v3.0.0 ([#26](https://github.com/royriojas/flat-cache/issues/26)) - [d42883f](https://github.com/royriojas/flat-cache/commit/d42883f), [Patrick Silva](https://github.com/Patrick Silva), 03/11/2018 01:00:44
|
|
142
|
-
|
|
143
|
-
Closes <a target="_blank" class="info-link" href="https://github.com/royriojas/flat-cache/issues/25"><span>#25</span></a>
|
|
144
|
-
|
|
145
|
-
## v1.3.0
|
|
146
|
-
|
|
147
|
-
- **Other changes**
|
|
148
|
-
|
|
149
|
-
- Added #all method ([#16](https://github.com/royriojas/flat-cache/issues/16)) - [12293be](https://github.com/royriojas/flat-cache/commit/12293be), [Ozair Patel](https://github.com/Ozair Patel), 25/09/2017 14:46:38
|
|
150
|
-
|
|
151
|
-
- Added #all method
|
|
152
|
-
- Added #all method test
|
|
153
|
-
- Updated readme
|
|
154
|
-
- Added yarn.lock
|
|
155
|
-
- Added more keys for #all test
|
|
156
|
-
- Beautified file
|
|
157
|
-
|
|
158
|
-
- fix changelog title style ([#14](https://github.com/royriojas/flat-cache/issues/14)) - [af8338a](https://github.com/royriojas/flat-cache/commit/af8338a), [前端小武](https://github.com/前端小武), 19/12/2016 20:34:48
|
|
159
|
-
|
|
160
|
-
## v1.2.2
|
|
161
|
-
|
|
162
|
-
- **Bug Fixes**
|
|
163
|
-
|
|
164
|
-
- Do not crash if cache file is invalid JSON. ([#13](https://github.com/royriojas/flat-cache/issues/13)) - [87beaa6](https://github.com/royriojas/flat-cache/commit/87beaa6), [Roy Riojas](https://github.com/Roy Riojas), 19/12/2016 18:03:35
|
|
165
|
-
|
|
166
|
-
Fixes <a target="_blank" class="info-link" href="https://github.com/royriojas/flat-cache/issues/12"><span>#12</span></a>
|
|
167
|
-
|
|
168
|
-
Not sure under which situations a cache file might exist that does
|
|
169
|
-
not contain a valid JSON structure, but just in case to cover
|
|
170
|
-
the possibility of this happening a try catch block has been added
|
|
171
|
-
|
|
172
|
-
If the cache is somehow not valid the cache will be discarded an a
|
|
173
|
-
a new cache will be stored instead
|
|
174
|
-
|
|
175
|
-
- **Other changes**
|
|
176
|
-
|
|
177
|
-
- Added travis ci support for modern node versions ([#11](https://github.com/royriojas/flat-cache/issues/11)) - [1c2b1f7](https://github.com/royriojas/flat-cache/commit/1c2b1f7), [Amila Welihinda](https://github.com/Amila Welihinda), 10/11/2016 23:47:52
|
|
178
|
-
- Bumping `circular-son` version ([#10](https://github.com/royriojas/flat-cache/issues/10)) - [4d5e861](https://github.com/royriojas/flat-cache/commit/4d5e861), [Andrea Giammarchi](https://github.com/Andrea Giammarchi), 02/08/2016 07:13:52
|
|
179
|
-
|
|
180
|
-
As mentioned in https://github.com/WebReflection/circular-json/issues/25 `circular-json` wan't rightly implementing the license field.
|
|
181
|
-
|
|
182
|
-
Latest version bump changed only that bit so that ESLint should now be happy.
|
|
183
|
-
|
|
184
|
-
## v1.2.1
|
|
185
|
-
|
|
186
|
-
- **Bug Fixes**
|
|
187
|
-
- Add missing utils.js file to the package. closes [#8](https://github.com/royriojas/flat-cache/issues/8) - [ec10cf2](https://github.com/royriojas/flat-cache/commit/ec10cf2), [Roy Riojas](https://github.com/Roy Riojas), 01/08/2016 02:18:57
|
|
188
|
-
|
|
189
|
-
## v1.2.0
|
|
190
|
-
|
|
191
|
-
- **Documentation**
|
|
192
|
-
- Add documentation about noPrune option - [23e11f9](https://github.com/royriojas/flat-cache/commit/23e11f9), [Roy Riojas](https://github.com/Roy Riojas), 01/08/2016 02:06:49
|
|
193
|
-
|
|
194
|
-
## v1.0.11
|
|
195
|
-
|
|
196
|
-
- **Features**
|
|
197
|
-
|
|
198
|
-
- Add noPrune option to cache.save() method. closes [#7](https://github.com/royriojas/flat-cache/issues/7) - [2c8016a](https://github.com/royriojas/flat-cache/commit/2c8016a), [Roy Riojas](https://github.com/Roy Riojas), 01/08/2016 02:00:29
|
|
199
|
-
- Add json read and write utility based on circular-json - [c31081e](https://github.com/royriojas/flat-cache/commit/c31081e), [Jean Ponchon](https://github.com/Jean Ponchon), 28/07/2016 08:58:17
|
|
200
|
-
|
|
201
|
-
- **Bug Fixes**
|
|
202
|
-
|
|
203
|
-
- Remove UTF16 BOM stripping - [4a41e22](https://github.com/royriojas/flat-cache/commit/4a41e22), [Jean Ponchon](https://github.com/Jean Ponchon), 29/07/2016 02:18:06
|
|
204
|
-
|
|
205
|
-
Since we control both writing and reading of JSON stream, there no needs
|
|
206
|
-
to handle unicode BOM.
|
|
207
|
-
|
|
208
|
-
- Use circular-json to handle circular references (fix [#5](https://github.com/royriojas/flat-cache/issues/5)) - [cd7aeed](https://github.com/royriojas/flat-cache/commit/cd7aeed), [Jean Ponchon](https://github.com/Jean Ponchon), 25/07/2016 11:11:59
|
|
209
|
-
|
|
210
|
-
- **Tests Related fixes**
|
|
211
|
-
|
|
212
|
-
- Add missing file from eslint test - [d6fa3c3](https://github.com/royriojas/flat-cache/commit/d6fa3c3), [Jean Ponchon](https://github.com/Jean Ponchon), 29/07/2016 02:15:51
|
|
213
|
-
- Add test for circular json serialization / deserialization - [07d2ddd](https://github.com/royriojas/flat-cache/commit/07d2ddd), [Jean Ponchon](https://github.com/Jean Ponchon), 28/07/2016 08:59:36
|
|
214
|
-
|
|
215
|
-
- **Refactoring**
|
|
216
|
-
- Remove unused read-json-sync - [2be1c24](https://github.com/royriojas/flat-cache/commit/2be1c24), [Jean Ponchon](https://github.com/Jean Ponchon), 28/07/2016 08:59:18
|
|
217
|
-
- **Build Scripts Changes**
|
|
218
|
-
- travis tests on 0.12 and 4x - [3a613fd](https://github.com/royriojas/flat-cache/commit/3a613fd), [royriojas](https://github.com/royriojas), 15/11/2015 14:34:40
|
|
219
|
-
|
|
220
|
-
## v1.0.10
|
|
221
|
-
|
|
222
|
-
- **Build Scripts Changes**
|
|
223
|
-
|
|
224
|
-
- add eslint-fix task - [fd29e52](https://github.com/royriojas/flat-cache/commit/fd29e52), [royriojas](https://github.com/royriojas), 01/11/2015 15:04:08
|
|
225
|
-
- make sure the test script also verify beautification and linting of files before running tests - [e94e176](https://github.com/royriojas/flat-cache/commit/e94e176), [royriojas](https://github.com/royriojas), 01/11/2015 11:54:48
|
|
226
|
-
|
|
227
|
-
- **Other changes**
|
|
228
|
-
- add clearAll for cacheDir - [97383d9](https://github.com/royriojas/flat-cache/commit/97383d9), [xieyaowu](https://github.com/xieyaowu), 31/10/2015 21:02:18
|
|
229
|
-
|
|
230
|
-
## v1.0.9
|
|
231
|
-
|
|
232
|
-
- **Bug Fixes**
|
|
233
|
-
- wrong default values for changelogx user repo name - [7bb52d1](https://github.com/royriojas/flat-cache/commit/7bb52d1), [royriojas](https://github.com/royriojas), 11/09/2015 15:59:30
|
|
234
|
-
|
|
235
|
-
## v1.0.8
|
|
236
|
-
|
|
237
|
-
- **Build Scripts Changes**
|
|
238
|
-
- test against node 4 - [c395b66](https://github.com/royriojas/flat-cache/commit/c395b66), [royriojas](https://github.com/royriojas), 11/09/2015 15:51:39
|
|
239
|
-
|
|
240
|
-
## v1.0.7
|
|
241
|
-
|
|
242
|
-
- **Other changes**
|
|
243
|
-
- Move dependencies into devDep - [7e47099](https://github.com/royriojas/flat-cache/commit/7e47099), [Bogdan Chadkin](https://github.com/Bogdan Chadkin), 11/09/2015 15:10:57
|
|
244
|
-
- **Documentation**
|
|
245
|
-
- Add missing changelog link - [f51197a](https://github.com/royriojas/flat-cache/commit/f51197a), [royriojas](https://github.com/royriojas), 11/09/2015 14:48:05
|
|
246
|
-
|
|
247
|
-
## v1.0.6
|
|
248
|
-
|
|
249
|
-
- **Build Scripts Changes**
|
|
250
|
-
- Add helpers/code check scripts - [bdb82f3](https://github.com/royriojas/flat-cache/commit/bdb82f3), [royriojas](https://github.com/royriojas), 11/09/2015 14:44:31
|
|
251
|
-
|
|
252
|
-
## v1.0.5
|
|
253
|
-
|
|
254
|
-
- **Documentation**
|
|
255
|
-
- better description for the module - [436817f](https://github.com/royriojas/flat-cache/commit/436817f), [royriojas](https://github.com/royriojas), 11/09/2015 14:35:33
|
|
256
|
-
- **Other changes**
|
|
257
|
-
- Update dependencies - [be88aa3](https://github.com/royriojas/flat-cache/commit/be88aa3), [Bogdan Chadkin](https://github.com/Bogdan Chadkin), 11/09/2015 13:47:41
|
|
258
|
-
|
|
259
|
-
## v1.0.4
|
|
260
|
-
|
|
261
|
-
- **Refactoring**
|
|
262
|
-
- load a cache file using the full filepath - [b8f68c2](https://github.com/royriojas/flat-cache/commit/b8f68c2), [Roy Riojas](https://github.com/Roy Riojas), 30/08/2015 04:19:14
|
|
263
|
-
- **Documentation**
|
|
264
|
-
- Add documentation about `clearAll` and `clearCacheById` - [13947c1](https://github.com/royriojas/flat-cache/commit/13947c1), [Roy Riojas](https://github.com/Roy Riojas), 01/03/2015 23:44:05
|
|
265
|
-
- **Features**
|
|
266
|
-
- Add methods to remove the cache documents created - [af40443](https://github.com/royriojas/flat-cache/commit/af40443), [Roy Riojas](https://github.com/Roy Riojas), 01/03/2015 23:39:27
|
|
267
|
-
|
|
268
|
-
## v1.0.1
|
|
269
|
-
|
|
270
|
-
- **Other changes**
|
|
271
|
-
- Update README.md - [c2b6805](https://github.com/royriojas/flat-cache/commit/c2b6805), [Roy Riojas](https://github.com/Roy Riojas), 26/02/2015 04:28:07
|
|
272
|
-
|
|
273
|
-
## v1.0.0
|
|
274
|
-
|
|
275
|
-
- **Refactoring**
|
|
276
|
-
- flat-cache v.1.0.0 - [c984274](https://github.com/royriojas/flat-cache/commit/c984274), [Roy Riojas](https://github.com/Roy Riojas), 26/02/2015 04:11:50
|
|
277
|
-
- **Other changes**
|
|
278
|
-
- Initial commit - [d43cccf](https://github.com/royriojas/flat-cache/commit/d43cccf), [Roy Riojas](https://github.com/Roy Riojas), 26/02/2015 01:12:16
|