vfile is a small and browser friendly virtual file format that tracks
metadata about files (such as its path and value) and lint
messages.
- unified
- What is this?
- When should I use this?
- Install
- Use
- API
VFile(options?)file.cwdfile.datafile.historyfile.messagesfile.valuefile.basenamefile.dirnamefile.extnamefile.pathfile.stemVFile#fail(reason[, options])VFile#info(reason[, options])VFile#message(reason[, options])VFile#toString(encoding?)CompatibleDataDataMapMapMessageOptionsOptionsReporterReporterSettingsValue- Well-known
- List of utilities
- Reporters
- Types
- Compatibility
- Contribute
- Sponsor
- Acknowledgments
- License
vfile is part of the unified collective.
- for more about us, see
unifiedjs.com - for how the collective is governed, see
unifiedjs/collective
This package provides a virtual file format. It exposes an API to access the file value, path, metadata about the file, and specifically supports attaching lint messages and errors to certain places in these files.
The virtual file format is useful when dealing with the concept of files in places where you might not be able to access the file system. The message API is particularly useful when making things that check files (as in, linting).
vfile is made for unified, which amongst other things checks files. However, vfile can be used in other projects that deal with parsing, transforming, and serializing data, to build linters, compilers, static site generators, and other build tools.
This is different from the excellent vinyl in that vfile has a
smaller API, a smaller size, and focuses on messages.
This package is ESM only. In Node.js (version 16+), install with npm:
npm install vfileIn Deno with esm.sh:
import {VFile} from 'https://esm.sh/vfile@6'In browsers with esm.sh:
<script type="module">
import {VFile} from 'https://esm.sh/vfile@6?bundle'
</script>import {VFile} from 'vfile'
const file = new VFile({
path: '~/example.txt',
value: 'Alpha *braavo* charlie.'
})
console.log(file.path) // => '~/example.txt'
console.log(file.dirname) // => '~'
file.extname = '.md'
console.log(file.basename) // => 'example.md'
file.basename = 'index.text'
console.log(file.history) // => ['~/example.txt', '~/example.md', '~/index.text']
file.message('Unexpected unknown word `braavo`, did you mean `bravo`?', {
place: {line: 1, column: 8},
source: 'spell',
ruleId: 'typo'
})
console.log(file.messages)Yields:
[
[~/index.text:1:8: Unexpected unknown word `braavo`, did you mean `bravo`?] {
ancestors: undefined,
cause: undefined,
column: 8,
fatal: false,
line: 1,
place: { line: 1, column: 8 },
reason: 'Unexpected unknown word `braavo`, did you mean `bravo`?',
ruleId: 'typo',
source: 'spell',
file: '~/index.text'
}
]This package exports the identifier VFile.
There is no default export.
Create a new virtual file.
options is treated as:
stringorUint8Arrayβ{value: options}URLβ{path: options}VFileβ shallow copies its data over to the new fileobjectβ all fields are shallow copied over to the new file
Path related fields are set in the following order (least specific to
most specific): history, path, basename, stem, extname,
dirname.
You cannot set dirname or extname without setting either history,
path, basename, or stem too.
options(Compatible, optional) β file value
New instance (VFile).
new VFile()
new VFile('console.log("alpha");')
new VFile(new Uint8Array([0x65, 0x78, 0x69, 0x74, 0x20, 0x31]))
new VFile({path: path.join('path', 'to', 'readme.md')})
new VFile({stem: 'readme', extname: '.md', dirname: path.join('path', 'to')})
new VFile({other: 'properties', are: 'copied', ov: {e: 'r'}})Base of path (string, default: process.cwd() or '/' in browsers).
Place to store custom info (Record<string, unknown>, default: {}).
Itβs OK to store custom data directly on the file but moving it to data is
recommended.
List of file paths the file moved between (Array<string>).
The first is the original path and the last is the current path.
List of messages associated with the file
(Array<VFileMessage>).
Raw value (Uint8Array, string, undefined).
Get or set the basename (including extname) (string?, example: 'index.min.js').
Cannot contain path separators ('/' on unix, macOS, and browsers, '\' on
windows).
Cannot be nullified (use file.path = file.dirname instead).
Get or set the parent path (string?, example: '~').
Cannot be set if thereβs no path yet.
Get or set the extname (including dot) (string?, example: '.js').
Cannot contain path separators ('/' on unix, macOS, and browsers, '\' on
windows).
Cannot be set if thereβs no path yet.
Get or set the full path (string?, example: '~/index.min.js').
Cannot be nullified.
You can set a file URL (a URL object with a file: protocol) which will be
turned into a path with url.fileURLToPath.
Get or set the stem (basename w/o extname) (string?, example: 'index.min').
Cannot contain path separators ('/' on unix, macOS, and browsers, '\' on
windows).
Cannot be nullified.
Create a fatal message for reason associated with the file.
The fatal field of the message is set to true (error; file not usable) and
the file field is set to the current file path.
The message is added to the messages field on file.
πͺ¦ Note: also has obsolete signatures.
reason(string) β reason for message, should use markdownoptions(MessageOptions, optional) β configuration
Nothing (never).
Message (VFileMessage).
Create an info message for reason associated with the file.
The fatal field of the message is set to undefined (info; change likely not
needed) and the file field is set to the current file path.
The message is added to the messages field on file.
πͺ¦ Note: also has obsolete signatures.
reason(string) β reason for message, should use markdownoptions(MessageOptions, optional) β configuration
Message (VFileMessage).
Create a message for reason associated with the file.
The fatal field of the message is set to false (warning; change may be
needed) and the file field is set to the current file path.
The message is added to the messages field on file.
πͺ¦ Note: also has obsolete signatures.
reason(string) β reason for message, should use markdownoptions(MessageOptions, optional) β configuration
Message (VFileMessage).
Serialize the file.
Note: which encodings are supported depends on the engine. For info on Node.js, see: https://nodejs.org/api/util.html#whatwg-supported-encodings.
encoding(string, default:'utf8') β character encoding to understandvalueas when itβs aUint8Array
Serialized file (string).
Things that can be passed to the constructor (TypeScript type).
type Compatible = Options | URL | VFile | ValueCustom info (TypeScript type).
Known attributes can be added to DataMap.
type Data = Record<string, unknown> & Partial<DataMap>This map registers the type of the data key of a VFile (TypeScript type).
This type can be augmented to register custom data types.
interface DataMap {}declare module 'vfile' {
interface DataMap {
// `file.data.name` is typed as `string`
name: string
}
}Raw source map (TypeScript type).
See source-map.
version(number) β which version of the source map spec this map is followingsources(Array<string>) β an array of URLs to the original source filesnames(Array<string>) β an array of identifiers which can be referenced by individual mappingssourceRoot(string, optional) β the URL root from which all sources are relativesourcesContent(Array<string>, optional) β an array of contents of the original source filesmappings(string) β a string of base64 VLQs which contain the actual mappingsfile(string) β the generated file this source map is associated with
Options to create messages (TypeScript type).
An object with arbitrary fields and the following known fields (TypeScript type).
basename(string, optional) β setbasename(name)cwd(string, optional) β setcwd(working directory)data(Data, optional) β setdata(associated info)dirname(string, optional) β setdirname(path w/o basename)extname(string, optional) β setextname(extension with dot)history(Array<string>, optional) β sethistory(paths the file moved between)path(URL | string, optional) β setpath(current path)stem(string, optional) β setstem(name without extension)value(Value, optional) β setvalue(the contents of the file)
Type for a reporter (TypeScript type).
type Reporter<Settings = ReporterSettings> = (
files: Array<VFile>,
options: Settings
) => stringConfiguration for reporters (TypeScript type).
type ReporterSettings = Record<string, unknown>Contents of the file (TypeScript type).
Can either be text or a Uint8Array structure.
type Value = Uint8Array | stringThe following fields are considered βnon-standardβ, but they are allowed, and some utilities use them:
map(Map) β source map; this type is equivalent to theRawSourceMaptype from thesource-mapmoduleresult(unknown) β custom, non-string, compiled, representation; this is used by unified to store non-string results; one example is when turning markdown into React nodesstored(boolean) β whether a file was saved to disk; this is used by vfile reporters
There are also well-known fields on messages, see
them in a similar section of
vfile-message.
convert-vinyl-to-vfileβ transform from Vinylto-vfileβ create a file from a file path and read and write to the file systemvfile-find-downβ find files by searching the file system downwardsvfile-find-upβ find files by searching the file system upwardsvfile-globβ find files by glob patternsvfile-isβ check if a file passes a testvfile-locationβ convert between positional and offset locationsvfile-matterβ parse the YAML front mattervfile-messageβ create a file messagevfile-messages-to-vscode-diagnosticsβ transform file messages to VS Code diagnosticsvfile-mkdirpβ make sure the directory of a file exists on the file systemvfile-renameβ rename the path parts of a filevfile-sortβ sort messages by line/columnvfile-statisticsβ count messages per category: failures, warnings, etcvfile-to-eslintβ convert to ESLint formatter compatible output
π Note: see unist for projects that work with nodes.
vfile-reporterβ create a reportvfile-reporter-jsonβ create a JSON reportvfile-reporter-folder-jsonβ create a JSON representation of vfilesvfile-reporter-prettyβ create a pretty reportvfile-reporter-junitβ create a jUnit reportvfile-reporter-positionβ create a report with content excerpts
π Note: want to make your own reporter? Reporters must accept
Array<VFile>as their first argument, and returnstring. Reporters may accept other values too, in which case itβs suggested to stick tovfile-reporters interface.
This package is fully typed with TypeScript.
It exports the additional types
Compatible,
Data,
DataMap,
Map,
MessageOptions,
Options,
Reporter,
ReporterSettings, and
Value.
Projects maintained by the unified collective are compatible with maintained versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line, vfile@^6,
compatible with Node.js 16.
See contributing.md in vfile/.github for ways to
get started.
See support.md for ways to get help.
This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.
Support this effort and give back by sponsoring on OpenCollective!
|
Vercel |
Motif |
HashiCorp |
GitBook |
Gatsby |
|||||
Netlify
|
Coinbase |
ThemeIsle |
Expo |
Boost Note
|
Markdown Space
|
Holloway |
|||
|
You? |
|||||||||
The initial release of this project was authored by @wooorm.
Thanks to @contra, @phated, and others for their work on Vinyl, which was a huge inspiration.
Thanks to @brendo, @shinnn, @KyleAMathews, @sindresorhus, and @denysdovhan for contributing commits since!
MIT Β© Titus Wormer


