7
7
[ ![ Backers] [ backers-badge ]] [ collective ]
8
8
[ ![ Chat] [ chat-badge ]] [ chat ]
9
9
10
- Create a [ ` vfile ` ] [ vfile ] from a filepath.
11
- Optionally populates them from the file system as well.
12
- Can write virtual files to file system too.
10
+ [ vfile] [ ] utility to read and write to the file system.
13
11
14
- ## Install
12
+ ## Contents
13
+
14
+ * [ What is this?] ( #what-is-this )
15
+ * [ When should I use this?] ( #when-should-i-use-this )
16
+ * [ Install] ( #install )
17
+ * [ Use] ( #use )
18
+ * [ API] ( #api )
19
+ * [ ` toVFile(options) ` ] ( #tovfileoptions )
20
+ * [ ` read(options[, encoding][, callback]) ` ] ( #readoptions-encoding-callback )
21
+ * [ ` readSync(options[, encoding]) ` ] ( #readsyncoptions-encoding )
22
+ * [ ` write(options[, fsOptions][, callback]) ` ] ( #writeoptions-fsoptions-callback )
23
+ * [ ` writeSync(options[, fsOptions]) ` ] ( #writesyncoptions-fsoptions )
24
+ * [ Types] ( #types )
25
+ * [ Compatibility] ( #compatibility )
26
+ * [ Contribute] ( #contribute )
27
+ * [ License] ( #license )
28
+
29
+ ## What is this?
15
30
16
- This package is [ ESM only] ( https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c ) :
17
- Node 12+ is needed to use it and it must be ` import ` ed instead of ` require ` d.
31
+ This utility places file paths and the file system first.
32
+ Where ` vfile ` itself focusses on file values (the file contents), this instead
33
+ focuses on the file system, which is a common case when working with files.
18
34
19
- [ npm] [ ] :
35
+ ## When should I use this?
36
+
37
+ Use this if you know there’s a file system and want to use it.
38
+ Use ` vfile ` if there might not be a file system.
39
+
40
+ ## Install
41
+
42
+ This package is [ ESM only] [ esm ] .
43
+ In Node.js (version 12.20+, 14.14+, 16.0+, or 18.0+), install with [ npm] [ ] :
20
44
21
45
``` sh
22
46
npm install to-vfile
23
47
```
24
48
49
+ In Deno with [ ` esm.sh ` ] [ esmsh ] :
50
+
51
+ ``` js
52
+ import {toVFile , read , readSync , write , writeSync } from ' https://esm.sh/to-vfile@7'
53
+ ```
54
+
55
+ In browsers with [ ` esm.sh ` ] [ esmsh ] :
56
+
57
+ ``` html
58
+ <script type =" module" >
59
+ import {toVFile , read , readSync , write , writeSync } from ' https://esm.sh/to-vfile@7?bundle'
60
+ </script >
61
+ ```
62
+
25
63
## Use
26
64
27
65
``` js
28
- import {toVFile , readSync } from ' to-vfile'
66
+ import {toVFile , read } from ' to-vfile'
29
67
30
68
console .log (toVFile (' readme.md' ))
31
- console .log (toVFile (new URL (' ./ readme.md' , import .meta.url)))
32
- console .log (readSync (' .git/HEAD' ))
33
- console .log (readSync (' .git/HEAD' , ' utf8' ))
69
+ console .log (toVFile (new URL (' readme.md' , import .meta.url)))
70
+ console .log (await read (' .git/HEAD' ))
71
+ console .log (await read (' .git/HEAD' , ' utf8' ))
34
72
` ` `
35
73
36
74
Yields:
@@ -39,54 +77,54 @@ Yields:
39
77
VFile {
40
78
data: {},
41
79
messages: [],
42
- history: [' readme.md' ],
43
- cwd: ' /Users/tilde/projects /oss/to-vfile'
80
+ history: [ ' readme.md' ],
81
+ cwd: ' /Users/tilde/Projects /oss/to-vfile'
44
82
}
45
83
VFile {
46
84
data: {},
47
85
messages: [],
48
- history: [' readme.md' ],
49
- cwd: ' /Users/tilde/projects /oss/to-vfile'
86
+ history: [ ' /Users/tilde/Projects/oss/to-vfile/ readme.md' ],
87
+ cwd: ' /Users/tilde/Projects /oss/to-vfile'
50
88
}
51
89
VFile {
52
90
data: {},
53
91
messages: [],
54
- history: [' .git/HEAD' ],
55
- cwd: ' /Users/tilde/projects /oss/to-vfile' ,
56
- value: < Buffer 72 65 66 3a 20 72 65 66 73 2f 68 65 61 64 73 2f 6d 61 73 74 65 72 0a >
92
+ history: [ ' .git/HEAD' ],
93
+ cwd: ' /Users/tilde/Projects /oss/to-vfile' ,
94
+ value: < Buffer 72 65 66 3a 20 72 65 66 73 2f 68 65 61 64 73 2f 6d 61 69 6e 0a >
57
95
}
58
96
VFile {
59
97
data: {},
60
98
messages: [],
61
- history: [' .git/HEAD' ],
62
- cwd: ' /Users/tilde/projects /oss/to-vfile' ,
99
+ history: [ ' .git/HEAD' ],
100
+ cwd: ' /Users/tilde/Projects /oss/to-vfile' ,
63
101
value: ' ref: refs/heads/main\n '
64
102
}
65
103
` ` `
66
104
67
105
## API
68
106
69
- This package exports the following identifiers: ` toVFile` , ` read` , ` readSync` ,
70
- ` write ` , and ` writeSync` .
107
+ This package exports the identifiers ` toVFile` , ` read` , ` readSync` , ` write ` ,
108
+ and ` writeSync` .
71
109
There is no default export.
72
110
73
111
### ` toVFile (options)`
74
112
75
113
Create a virtual file.
76
- Works like the [vfile][ ] constructor, except when ` options` is ` string` or
77
- ` Buffer` , in which case it’s treated as ` {path: options}` instead of
78
- ` {value: options}` , or when ` options` is a WHATWG ` URL ` object, in which case
79
- it’s treated as ` {path: fileURLToPath (options)}` .
114
+ Works like the [` VFile ` ][vfile ] constructor, except when ` options` is ` string`
115
+ or ` Buffer` , in which case it’s treated as ` {path: options}` instead of
116
+ ` {value: options}` , or when ` options` is a ` URL ` object, in which case it’s
117
+ treated as ` {path: fileURLToPath (options)}` .
80
118
81
119
### ` read (options[, encoding][, callback])`
82
120
83
121
Creates a virtual file from options (` toVFile (options)` ), reads the file from
84
122
the file system and populates ` file .value ` with the result.
85
123
If ` encoding` is specified, it’s passed to ` fs .readFile ` .
86
- If ` callback` is given, invokes it with either an error or the populated virtual
124
+ If ` callback` is given, calls it with either an error or the populated virtual
87
125
file.
88
- If ` callback` is not given, returns a [` Promise ` ][promise] that is rejected with
89
- an error or resolved with the populated virtual file.
126
+ If ` callback` is not given, returns a [` Promise ` ][promise] that is rejected
127
+ with an error or resolved with the populated virtual file.
90
128
91
129
### ` readSync (options[, encoding])`
92
130
@@ -98,15 +136,28 @@ Either throws an error or returns a populated virtual file.
98
136
Creates a virtual file from ` options` (` toVFile (options)` ), writes the file to
99
137
the file system.
100
138
` fsOptions` are passed to ` fs .writeFile ` .
101
- If ` callback` is given, invokes it with an error, if any.
102
- If ` callback` is not given, returns a [` Promise ` ][promise] that is rejected with
103
- an error or resolved with the written virtual file.
139
+ If ` callback` is given, calls it with an error, if any.
140
+ If ` callback` is not given, returns a [` Promise ` ][promise] that is rejected
141
+ with an error or resolved with the written virtual file.
104
142
105
143
### ` writeSync (options[, fsOptions])`
106
144
107
145
Like ` write` but synchronous.
108
146
Either throws an error or returns a populated virtual file.
109
147
148
+ ## Types
149
+
150
+ This package is fully typed with [TypeScript][].
151
+ It exports the additional types ` Compatible` , ` Callback` , ` BufferEncoding` ,
152
+ ` Mode` , ` ReadOptions` , and ` WriteOptions` .
153
+
154
+ ## Compatibility
155
+
156
+ Projects maintained by the unified collective are compatible with all maintained
157
+ versions of Node.js.
158
+ As of now, that is Node.js 12.20+, 14.14+, 16.0+, and 18.0+.
159
+ Our projects sometimes work with older versions, but this is not guaranteed.
160
+
110
161
## Contribute
111
162
112
163
See [` contributing .md ` ][contributing] in [` vfile/ .github ` ][health] for ways to
@@ -147,13 +198,19 @@ abide by its terms.
147
198
148
199
[npm]: https://docs.npmjs.com/cli/install
149
200
150
- [contributing]: https://github.com/vfile/.github/blob/HEAD/contributing.md
201
+ [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c
202
+
203
+ [esmsh]: https://esm.sh
204
+
205
+ [typescript]: https://www.typescriptlang.org
206
+
207
+ [contributing]: https://github.com/vfile/.github/blob/main/contributing.md
151
208
152
- [support]: https://github.com/vfile/.github/blob/HEAD /support.md
209
+ [support]: https://github.com/vfile/.github/blob/main /support.md
153
210
154
211
[health]: https://github.com/vfile/.github
155
212
156
- [coc]: https://github.com/vfile/.github/blob/HEAD /code-of-conduct.md
213
+ [coc]: https://github.com/vfile/.github/blob/main /code-of-conduct.md
157
214
158
215
[license]: license
159
216
0 commit comments