We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 773c274 commit 38f8c5dCopy full SHA for 38f8c5d
code/nodejs/server/file-server/readme.md
@@ -4,7 +4,15 @@
4
5
## Description
6
7
-This server can run locally and allow access to the local filesystem from the browser / javascript
+This server can run locally and allow access to the local filesystem from the browser / javascript through https requests
8
+
9
+```
10
11
+ var res = await fetch('https://localhost:3000/my-file.txt');
12
+ var txt = await res.text();
13
+ consolelog(txt);
14
15
16
17
18
0 commit comments