We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff30e48 commit b1fb2e8Copy full SHA for b1fb2e8
code/nodejs/server/file-server/readme.md
@@ -8,12 +8,14 @@ This server can run locally and allow access to the local filesystem from the br
8
9
```
10
11
- var res = await fetch('https://localhost:3000/my-file.txt');
+ var res = await fetch('https://localhost:3000/my-file.txt',{headers:{mode:'load',auth:'abc-123'}})
12
var txt = await res.text();
13
consolelog(txt);
14
15
16
17
-
+the client-side library can found at
18
+
19
+[file-server.js](/libs/js/io/file-server/file-server.html)
20
21
0 commit comments