16
16
* [ Install] ( #install )
17
17
* [ Use] ( #use )
18
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 )
19
+ * [ ` toVFile(description) ` ] ( #tovfiledescription )
20
+ * [ ` read(description[, options][, callback]) ` ] ( #readdescription-options-callback )
21
+ * [ ` readSync(description[, options]) ` ] ( #readsyncdescription-options )
22
+ * [ ` write(description[, options][, callback]) ` ] ( #writedescription-options-callback )
23
+ * [ ` writeSync(description[, options]) ` ] ( #writesyncdescription-options )
24
+ * [ ` BufferEncoding ` ] ( #bufferencoding )
25
+ * [ ` Callback ` ] ( #callback )
26
+ * [ ` Compatible ` ] ( #compatible )
27
+ * [ ` ReadOptions ` ] ( #readoptions )
28
+ * [ ` WriteOptions ` ] ( #writeoptions )
24
29
* [ Types] ( #types )
25
30
* [ Compatibility] ( #compatibility )
26
31
* [ Contribute] ( #contribute )
@@ -40,7 +45,7 @@ Use `vfile` if there might not be a file system.
40
45
## Install
41
46
42
47
This package is [ ESM only] [ esm ] .
43
- In Node.js (version 12.20+, 14.14+, 16.0+, or 18 .0+), install with [ npm] [ ] :
48
+ In Node.js (version 14.14+ and 16 .0+), install with [ npm] [ ] :
44
49
45
50
``` sh
46
51
npm install to-vfile
@@ -104,58 +109,197 @@ VFile {
104
109
105
110
## API
106
111
107
- This package exports the identifiers ` toVFile` , ` read` , ` readSync` , ` write` ,
108
- and ` writeSync` .
112
+ This package exports the identifiers [` read` ][api-read],
113
+ [` readSync` ][api-read-sync], [` toVFile` ][api-to-vfile],
114
+ [` write` ][api-write], and [` writeSync` ][api-write-sync].
109
115
There is no default export.
110
116
111
- ### ` toVFile (options )`
117
+ ### ` toVFile (description )`
112
118
113
- Create a virtual file.
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)}` .
119
+ Create a virtual file from a description.
118
120
119
- ### ` read (options[, encoding][, callback]) `
121
+ This is like ` VFile ` , but it accepts a file path instead of file cotnents.
120
122
121
- Creates a virtual file from options (` toVFile (options)` ), reads the file from
122
- the file system and populates ` file .value ` with the result.
123
- If ` encoding` is specified, it’s passed to ` fs .readFile ` .
124
- If ` callback` is given, calls it with either an error or the populated virtual
125
- 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.
123
+ If ` options` is a string, URL, or buffer, it’s used as the path.
124
+ Otherwise, if it’s a file, that’s returned instead.
125
+ Otherwise, the options are passed through to ` new VFile ()` .
128
126
129
- ### ` readSync (options[, encoding]) `
127
+ ###### Parameters
130
128
131
- Like ` read ` but synchronous.
132
- Either throws an error or returns a populated virtual file.
129
+ * ` description ` ([ ` Compatible ` ][api-compatible], optional)
130
+ — fath to file, file options, or file itself
133
131
134
- ### ` write (options[, fsOptions][, callback]) `
132
+ ###### Returns
135
133
136
- Creates a virtual file from ` options` (` toVFile (options)` ), writes the file to
137
- the file system.
138
- ` fsOptions` are passed to ` fs .writeFile ` .
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.
134
+ Given file or new file ([` VFile` ][vfile]).
142
135
143
- ### ` writeSync ( options[, fsOptions ])`
136
+ ### ` read (description[, options] [, callback ])`
144
137
145
- Like ` write` but synchronous.
146
- Either throws an error or returns a populated virtual file.
138
+ Create a virtual file and read it in, async.
139
+
140
+ ###### Signatures
141
+
142
+ * ` (description[, options], Callback): void `
143
+ * ` (description[, options]): Promise < VFile> `
144
+
145
+ ###### Parameters
146
+
147
+ * ` description` ([` Compatible` ][api-compatible])
148
+ — path to file, file options, or file itself
149
+ * ` options` ([` BufferEncoding` ][api-buffer-encoding],
150
+ [` ReadOptions` ][api-read-options], optional)
151
+ * ` callback` ([` Callback` ][api-callback], optional)
152
+ — callback called when done
153
+
154
+ ###### Returns
155
+
156
+ Nothing when a callback is given, otherwise [promise][] that resolves to given
157
+ file or new file ([` VFile` ][vfile]).
158
+
159
+ ### ` readSync (description[, options])`
160
+
161
+ Create a virtual file and read it in, synchronously.
162
+
163
+ ###### Parameters
164
+
165
+ * ` description` ([` Compatible` ][api-compatible])
166
+ — path to file, file options, or file itself
167
+ * ` options` ([` BufferEncoding` ][api-buffer-encoding],
168
+ [` ReadOptions` ][api-read-options], optional)
169
+
170
+ ###### Returns
171
+
172
+ Given file or new file ([` VFile` ][vfile]).
173
+
174
+ ### ` write (description[, options][, callback])`
175
+
176
+ Create a virtual file and write it, async.
177
+
178
+ ###### Signatures
179
+
180
+ * ` (description[, options], Callback): void `
181
+ * ` (description[, options]): Promise < VFile> `
182
+
183
+ ###### Parameters
184
+
185
+ * ` description` ([` Compatible` ][api-compatible])
186
+ — path to file, file options, or file itself
187
+ * ` options` ([` BufferEncoding` ][api-buffer-encoding],
188
+ [` WriteOptions` ][api-write-options], optional)
189
+ * ` callback` ([` Callback` ][api-callback], optional)
190
+ — callback called when done
191
+
192
+ ###### Returns
193
+
194
+ Nothing when a callback is given, otherwise [promise][] that resolves to given
195
+ file or new file ([` VFile` ][vfile]).
196
+
197
+ ### ` writeSync (description[, options])`
198
+
199
+ Create a virtual file and write it, async.
200
+
201
+ ###### Parameters
202
+
203
+ * ` description` ([` Compatible` ][api-compatible])
204
+ — path to file, file options, or file itself
205
+ * ` options` ([` BufferEncoding` ][api-buffer-encoding],
206
+ [` WriteOptions` ][api-write-options], optional)
207
+
208
+ ###### Returns
209
+
210
+ Given file or new file ([` VFile` ][vfile]).
211
+
212
+ ### ` BufferEncoding`
213
+
214
+ Encodings supported by the buffer class (TypeScript type).
215
+
216
+ This is a copy of the types from Node and [` VFile` ][vfile].
217
+
218
+ ###### Type
219
+
220
+ ` ` ` ts
221
+ export type BufferEncoding =
222
+ | ' ascii'
223
+ | ' utf8'
224
+ | ' utf-8'
225
+ | ' utf16le'
226
+ | ' ucs2'
227
+ | ' ucs-2'
228
+ | ' base64'
229
+ | ' base64url'
230
+ | ' latin1'
231
+ | ' binary'
232
+ | ' hex'
233
+ ` ` `
234
+
235
+ ### ` Callback`
236
+
237
+ Callback called after reading or writing a file (TypeScript type).
238
+
239
+ ###### Parameters
240
+
241
+ * ` error` (` Error ` , optional)
242
+ — error when reading or writing was not successful
243
+ * ` file` ([` VFile` ][vfile], optional)
244
+ — file when reading or writing was successful
245
+
246
+ ###### Returns
247
+
248
+ Nothing (` void ` ).
249
+
250
+ ### ` Compatible`
251
+
252
+ URL to file, path to file, options for file, or actual file (TypeScript type).
253
+
254
+ ###### Type
255
+
256
+ ` ` ` ts
257
+ export type Compatible = Buffer | URL | VFileOptions | VFile | string
258
+ ` ` `
259
+
260
+ <!-- To do: fix link to ` VFileOptions` when ` VFile` is updated -->
261
+
262
+ See [` VFileOptions` ][vfile] and [` VFile` ][vfile].
263
+
264
+ ### ` ReadOptions`
265
+
266
+ Configuration for ` fs .readFile ` (TypeScript type).
267
+
268
+ ###### Fields
269
+
270
+ * ` encoding` ([` BufferEncoding` ][api-buffer-encoding], optional)
271
+ — encoding to read file as, will turn ` file .value ` into a string if passed
272
+ * ` flag` (` string` , optional)
273
+ — file system flags to use
274
+
275
+ ### ` WriteOptions`
276
+
277
+ Configuration for ` fs .writeFile ` (TypeScript type).
278
+
279
+ ###### Fields
280
+
281
+ * ` encoding` ([` BufferEncoding` ][api-buffer-encoding], optional)
282
+ — encoding to write file as
283
+ * ` mode` (` number | string` , optional)
284
+ — file mode (permission and sticky bits) if the file was newly created
285
+ * ` flag` (` string` , optional)
286
+ — file system flags to use
147
287
148
288
## Types
149
289
150
290
This package is fully typed with [TypeScript][].
151
- It exports the additional types ` Compatible` , ` Callback` , ` BufferEncoding` ,
152
- ` Mode` , ` ReadOptions` , and ` WriteOptions` .
291
+ It exports the additional types
292
+ [` BufferEncoding` ][api-buffer-encoding],
293
+ [` Callback` ][api-callback],
294
+ [` Compatible` ][api-compatible],
295
+ [` ReadOptions` ][api-read-options], and
296
+ [` WriteOptions` ][api-write-options].
153
297
154
298
## Compatibility
155
299
156
300
Projects maintained by the unified collective are compatible with all maintained
157
301
versions of Node.js.
158
- As of now, that is Node.js 12.20+, 14.14+, 16.0+, and 18 .0+.
302
+ As of now, that is Node.js 14.14+ and 16 .0+.
159
303
Our projects sometimes work with older versions, but this is not guaranteed.
160
304
161
305
## Contribute
@@ -219,3 +363,23 @@ abide by its terms.
219
363
[vfile]: https://github.com/vfile/vfile
220
364
221
365
[promise]: https://developer.mozilla.org/Web/JavaScript/Reference/Global_Objects/Promise
366
+
367
+ [api-read]: #readdescription-options-callback
368
+
369
+ [api-read-sync]: #readsyncdescription-options
370
+
371
+ [api-to-vfile]: #tovfiledescription
372
+
373
+ [api-write]: #writedescription-options-callback
374
+
375
+ [api-write-sync]: #writesyncdescription-options
376
+
377
+ [api-buffer-encoding]: #bufferencoding
378
+
379
+ [api-callback]: #callback
380
+
381
+ [api-compatible]: #compatible
382
+
383
+ [api-read-options]: #readoptions
384
+
385
+ [api-write-options]: #writeoptions
0 commit comments