You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extensions/entity-files/packages/simple-file-server/README.md
+109-1Lines changed: 109 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -246,9 +246,117 @@ Each bucket also contains an internal `.sfs/` directory:
246
246
-**Path traversal protection**: canonical path validation on every request
247
247
-**No public access**: no anonymous or public bucket support
248
248
249
+
## Requirements
250
+
251
+
| Requirement | Minimum version |
252
+
|---|---|
253
+
| Node.js |**18.17.0**|
254
+
| npm | 9+ (or pnpm 8+) |
255
+
256
+
> **Why 18.17.0?** The `sharp` native image-processing library requires exactly `^18.17.0` as the lowest Node 18 patch that ships a compatible binary. All other dependencies support Node ≥ 18.
257
+
258
+
## Embedded Usage
259
+
260
+
You can start SFS programmatically inside your own Node.js application — no CLI needed.
0 commit comments