polystore 0.14.1 → 0.15.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "polystore",
3
- "version": "0.14.1",
3
+ "version": "0.15.0",
4
4
  "description": "A small compatibility layer for many popular KV stores like localStorage, Redis, FileSystem, etc.",
5
5
  "homepage": "https://polystore.dev/",
6
6
  "repository": "https://github.com/franciscop/polystore.git",
@@ -14,11 +14,11 @@
14
14
  "src/"
15
15
  ],
16
16
  "scripts": {
17
- "size": "echo $(gzip -c src/index.js | wc -c) bytes",
18
17
  "lint": "check-dts test/index.types.ts",
19
18
  "start": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch --coverage --detectOpenHandles",
20
19
  "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --ci --watchAll=false --detectOpenHandles",
21
- "db": "etcd"
20
+ "db": "etcd",
21
+ "server": "bun ./src/server.js"
22
22
  },
23
23
  "keywords": [
24
24
  "kv",
@@ -29,10 +29,10 @@
29
29
  "value"
30
30
  ],
31
31
  "license": "MIT",
32
- "dependencies": {},
33
32
  "devDependencies": {
34
33
  "@deno/kv": "^0.8.1",
35
34
  "check-dts": "^0.8.0",
35
+ "cross-fetch": "^4.0.0",
36
36
  "dotenv": "^16.3.1",
37
37
  "edge-mock": "^0.0.15",
38
38
  "etcd3": "^1.1.2",
package/readme.md CHANGED
@@ -35,6 +35,7 @@ Available clients for the KV store:
35
35
  - [**Session Storage** `sessionStorage`](#session-storage) (fe): persist the data in the browser's sessionStorage.
36
36
  - [**Cookies** `"cookie"`](#cookies) (fe): persist the data using cookies
37
37
  - [**LocalForage** `localForage`](#local-forage) (fe): persist the data on IndexedDB
38
+ - [**Fetch API** `"https://..."`](#fetch-api) (fe+be): call an API to save/retrieve the data
38
39
  - [**File** `new URL('file:///...')`](#file) (be): store the data in a single JSON file in your FS
39
40
  - [**Folder** `new URL('file:///...')`](#folder) (be): store each key in a folder as json files
40
41
  - [**Redis Client** `redisClient`](#redis-client) (be): use the Redis instance that you connect to
@@ -629,6 +630,25 @@ You don't need to `await` for the connect or similar, this will process it prope
629
630
  </ul>
630
631
  </details>
631
632
 
633
+ ### Fetch API
634
+
635
+ Calls an API to get/put the data:
636
+
637
+ ```js
638
+ import kv from "polystore";
639
+
640
+ const store = kv("https://kv.example.com/");
641
+
642
+ await store.set("key1", "Hello world", { expires: "1h" });
643
+ console.log(await store.get("key1"));
644
+ // "Hello world"
645
+ ```
646
+
647
+ > Note: the API client expire resolution is in the seconds, so times shorter than 1 second like `expires: 0.02` (20 ms) don't make sense for this storage method and won't properly save them.
648
+
649
+ > Note: see the reference implementation in src/server.js
650
+
651
+
632
652
  ### File
633
653
 
634
654
  Treat a JSON file in your filesystem as the source for the KV store:
@@ -643,7 +663,7 @@ console.log(await store.get("key1"));
643
663
  // "Hello world"
644
664
  ```
645
665
 
646
- > Note: an extension is needed, to desambiguate with "folder"
666
+ > Note: an extension is needed, to disambiguate with "folder"
647
667
 
648
668
  You can also create multiple stores:
649
669
 
@@ -692,7 +712,7 @@ console.log(await store.get("key1"));
692
712
  // "Hello world"
693
713
  ```
694
714
 
695
- > Note: the ending slash `/` is needed, to desambiguate with "file"
715
+ > Note: the ending slash `/` is needed, to disambiguate with "file"
696
716
 
697
717
  You can also create multiple stores:
698
718
 
@@ -0,0 +1,71 @@
1
+ // Use fetch()
2
+ export default class Api {
3
+ // Indicate that the file handler does NOT handle expirations
4
+ EXPIRES = true;
5
+
6
+ // Check whether the given store is a FILE-type
7
+ static test(client) {
8
+ return (
9
+ typeof client === "string" &&
10
+ (client.startsWith("https://") || client.startsWith("http://"))
11
+ );
12
+ }
13
+
14
+ constructor(client) {
15
+ client = client.replace(/\/$/, "") + "/";
16
+ this.client = async (path, opts = {}) => {
17
+ const query = Object.entries(opts.query || {})
18
+ .map(([k, v]) => `${k}=${encodeURIComponent(v)}`)
19
+ .join("&");
20
+ let url = client + path.replace(/^\//, "") + "?" + query;
21
+ opts.headers = opts.headers || {};
22
+ opts.headers.accept = "application/json";
23
+ if (opts.body) opts.headers["content-type"] = "application/json";
24
+ const res = await fetch(url, opts);
25
+ if (!res.ok) return null;
26
+ if (!res.headers["content-type"] !== "application/json") {
27
+ console.warn("Not a JSON API");
28
+ }
29
+ return res.json();
30
+ };
31
+ }
32
+
33
+ async get(key) {
34
+ return await this.client(`/${key}`);
35
+ }
36
+
37
+ async set(key, value, { expires } = {}) {
38
+ return await this.client(`/${encodeURIComponent(key)}`, {
39
+ query: { expires },
40
+ method: "put",
41
+ body: JSON.stringify(value),
42
+ });
43
+ }
44
+
45
+ async del(key) {
46
+ return await this.client(`/${encodeURIComponent(key)}`, {
47
+ method: "delete",
48
+ });
49
+ }
50
+
51
+ // Since we have pagination, we don't want to get all of the
52
+ // keys at once if we can avoid it
53
+ async *iterate(prefix = "") {
54
+ const data = await this.client("/", { query: { prefix } });
55
+ if (!data) return [];
56
+ for (let [key, value] of Object.entries(data)) {
57
+ yield [prefix + key, value];
58
+ }
59
+ }
60
+
61
+ async keys(prefix = "") {
62
+ const data = await this.client(`/`, { query: { prefix } });
63
+ if (!data) return [];
64
+ return Object.keys(data).map((k) => prefix + k);
65
+ }
66
+
67
+ async clear(prefix = "") {
68
+ const list = await this.keys(prefix);
69
+ return Promise.all(list.map((k) => this.del(k)));
70
+ }
71
+ }
@@ -1,3 +1,4 @@
1
+ import api from "./api.js";
1
2
  import cloudflare from "./cloudflare.js";
2
3
  import cookie from "./cookie.js";
3
4
  import etcd from "./etcd.js";
@@ -10,6 +11,7 @@ import redis from "./redis.js";
10
11
  import storage from "./storage.js";
11
12
 
12
13
  export default {
14
+ api,
13
15
  cloudflare,
14
16
  cookie,
15
17
  etcd,
package/src/server.js ADDED
@@ -0,0 +1,75 @@
1
+ // This is an example server implementation of the HTTP library!
2
+ import http from "node:http";
3
+ import kv from "./index.js";
4
+ import { parse } from "./utils.js";
5
+
6
+ // Modify this to use any sub-store as desired. It's nice
7
+ // to use polystore itself for the polystore server library!'
8
+ const store = kv(new Map());
9
+
10
+ // Some reply helpers
11
+ const notFound = () => new Response(null, { status: 404 });
12
+ const sendJson = (data, status = 200) => {
13
+ const body = JSON.stringify(data);
14
+ const headers = { "content-type": "application/json" };
15
+ return new Response(body, { status, headers });
16
+ };
17
+
18
+ async function fetch({ method, url, body }) {
19
+ method = method.toLowerCase();
20
+ url = new URL(url);
21
+ let [, id] = url.pathname.split("/");
22
+ id = decodeURIComponent(id);
23
+ const expires = Number(url.searchParams.get("expires")) || null;
24
+ const prefix = url.searchParams.get("prefix") || null;
25
+
26
+ let local = store;
27
+ if (prefix) local = store.prefix(prefix);
28
+
29
+ if (method === "get") {
30
+ if (id === "ping") return new Response(null, { status: 200 });
31
+ if (!id) return sendJson(await local.all());
32
+ const data = await local.get(id);
33
+ if (data === null) return notFound();
34
+ return sendJson(data);
35
+ }
36
+
37
+ if (method === "put") {
38
+ if (!id) return notFound();
39
+ const data = await new Response(body).json();
40
+ if (!data) return notFound();
41
+ await local.set(id, data, { expires });
42
+ return sendJson(id);
43
+ }
44
+
45
+ if (method === "delete" && id) {
46
+ await local.del(id);
47
+ return sendJson(id);
48
+ }
49
+
50
+ return notFound();
51
+ }
52
+
53
+ // http or express server-like handler:
54
+ async function server(req, res) {
55
+ const url = new URL(req.url, "http://localhost:3000/").href;
56
+ const reply = await fetch({ ...req, url });
57
+ res.writeHead(reply.status, null, reply.headers || {});
58
+ if (reply.body) res.write(reply.body);
59
+ res.end();
60
+ }
61
+
62
+ function start(port = 3000) {
63
+ return new Promise((resolve, reject) => {
64
+ const server = http.createServer(server);
65
+ server.on("clientError", (error, socket) => {
66
+ reject(error);
67
+ socket.end("HTTP/1.1 400 Bad Request\r\n\r\n");
68
+ });
69
+ server.listen(port, resolve);
70
+ return () => server.close();
71
+ });
72
+ }
73
+
74
+ export { fetch, server, start };
75
+ export default { fetch, server, start };