Skip to content

Commit 7c0f6f3

Browse files
committedJun 11, 2022
Add improved docs
1 parent 7bfe4a5 commit 7c0f6f3

File tree

1 file changed

+92
-35
lines changed

1 file changed

+92
-35
lines changed
 

‎readme.md

+92-35
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,68 @@
77
[![Backers][backers-badge]][collective]
88
[![Chat][chat-badge]][chat]
99

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.
1311

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?
1530

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.
1834

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][]:
2044

2145
```sh
2246
npm install to-vfile
2347
```
2448

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+
2563
## Use
2664

2765
```js
28-
import {toVFile, readSync} from 'to-vfile'
66+
import {toVFile, read} from 'to-vfile'
2967

3068
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'))
3472
```
3573
3674
Yields:
@@ -39,54 +77,54 @@ Yields:
3977
VFile {
4078
data: {},
4179
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'
4482
}
4583
VFile {
4684
data: {},
4785
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'
5088
}
5189
VFile {
5290
data: {},
5391
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>
5795
}
5896
VFile {
5997
data: {},
6098
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',
63101
value: 'ref: refs/heads/main\n'
64102
}
65103
```
66104
67105
## API
68106
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`.
71109
There is no default export.
72110
73111
### `toVFile(options)`
74112
75113
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)}`.
80118
81119
### `read(options[, encoding][, callback])`
82120
83121
Creates a virtual file from options (`toVFile(options)`), reads the file from
84122
the file system and populates `file.value` with the result.
85123
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
87125
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.
90128
91129
### `readSync(options[, encoding])`
92130
@@ -98,15 +136,28 @@ Either throws an error or returns a populated virtual file.
98136
Creates a virtual file from `options` (`toVFile(options)`), writes the file to
99137
the file system.
100138
`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.
104142
105143
### `writeSync(options[, fsOptions])`
106144
107145
Like `write` but synchronous.
108146
Either throws an error or returns a populated virtual file.
109147
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+
110161
## Contribute
111162
112163
See [`contributing.md`][contributing] in [`vfile/.github`][health] for ways to
@@ -147,13 +198,19 @@ abide by its terms.
147198
148199
[npm]: https://docs.npmjs.com/cli/install
149200
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
151208
152-
[support]: https://github.com/vfile/.github/blob/HEAD/support.md
209+
[support]: https://github.com/vfile/.github/blob/main/support.md
153210
154211
[health]: https://github.com/vfile/.github
155212
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
157214
158215
[license]: license
159216

0 commit comments

Comments
 (0)
Please sign in to comment.