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: README.md
+114-3
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,9 @@ The File System Access API enables web applications to seamlessly work with file
6
6
7
7
Unlike traditional file selection dialogs, the user will be prompted to select a directory, the hook will watch the files in that directory for changes - rerendering when changes are detected.
8
8
9
-
Visit [**use-fs.com**](https://use-fs.app) to try it out.
9
+
[**use-fs.com**](https://use-fs.app) to try it out.
10
10
11
-
> ⚠️ Note: The File System API is not yet fully supported in all browsers yet. Works in Chrome, Edge and Opera.
11
+
> ⚠️ Note: The File System API is not supported in all browsers. Works on Desktop in Chrome, Edge and Opera.
12
12
13
13
## 📡 Install
14
14
@@ -22,4 +22,115 @@ pnpm add use-fs
22
22
23
23
> 👋 Hello there! Follow me [@linesofcode](https://twitter.com/linesofcode) or visit [linesofcode.dev](https://linesofcode.dev) for more cool projects like this one.
24
24
25
-
## 🚀 Getting Started
25
+
## 🚀 Getting Started
26
+
27
+
```tsx
28
+
import { useFs } from"use-fs";
29
+
30
+
function App() {
31
+
const {
32
+
onDirectorySelection, // Function to trigger directory selection dialog
33
+
files, // Map of file paths to their contents
34
+
isBrowserSupported, // Boolean indicating if File System API is supported
35
+
onClear, // Function to clear selected directory and stop watching
36
+
isProcessing // Boolean indicating if files are being processed
37
+
} =useFs({
38
+
// Optional array of filter functions to exclude files/directories. By default `commonFilters` is used to ignore .git, node_modules, etc.
Copy file name to clipboardexpand all lines: package.json
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "use-fs",
3
-
"description": "A set of React hooks to interact with the File System API. Watch a directory for changes and return a map of filepaths & contents when a file is added, modified or removed.",
3
+
"description": "A React hook for integrating with the File System Access API. Enables web applications to seamlessly work with files on a user's local system.",
0 commit comments