Gathering detailed insights and metrics for vfile
Gathering detailed insights and metrics for vfile
Gathering detailed insights and metrics for vfile
Gathering detailed insights and metrics for vfile
vfile-message
vfile utility to create a virtual message
vfile-location
vfile utility to convert between positional (line and column-based) and offset (range-based) locations
@types/vfile
TypeScript definitions for VFile
@types/vfile-message
Stub TypeScript definitions entry for vfile-message, which provides its own types definitions
npm install vfile
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
508 Stars
315 Commits
39 Forks
7 Watchers
1 Branches
19 Contributors
Updated on Jul 10, 2025
Latest Version
6.0.3
Package Id
vfile@6.0.3
Unpacked Size
118.83 kB
Size
20.24 kB
File Count
29
NPM Version
10.8.2
Node Version
22.0.0
Published on
Aug 27, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
2
vfile is a small and browser friendly virtual file format that tracks
metadata about files (such as its path
and value
) and lint
messages.
VFile(options?)
file.cwd
file.data
file.history
file.messages
file.value
file.basename
file.dirname
file.extname
file.path
file.stem
VFile#fail(reason[, options])
VFile#info(reason[, options])
VFile#message(reason[, options])
VFile#toString(encoding?)
Compatible
Data
DataMap
Map
MessageOptions
Options
Reporter
ReporterSettings
Value
vfile is part of the unified collective.
unifiedjs.com
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:
1npm install vfile
In Deno with esm.sh
:
1import {VFile} from 'https://esm.sh/vfile@6'
In browsers with esm.sh
:
1<script type="module"> 2 import {VFile} from 'https://esm.sh/vfile@6?bundle' 3</script>
1import {VFile} from 'vfile' 2 3const file = new VFile({ 4 path: '~/example.txt', 5 value: 'Alpha *braavo* charlie.' 6}) 7 8console.log(file.path) // => '~/example.txt' 9console.log(file.dirname) // => '~' 10 11file.extname = '.md' 12 13console.log(file.basename) // => 'example.md' 14 15file.basename = 'index.text' 16 17console.log(file.history) // => ['~/example.txt', '~/example.md', '~/index.text'] 18 19file.message('Unexpected unknown word `braavo`, did you mean `bravo`?', { 20 place: {line: 1, column: 8}, 21 source: 'spell', 22 ruleId: 'typo' 23}) 24 25console.log(file.messages)
Yields:
1[ 2 [~/index.text:1:8: Unexpected unknown word `braavo`, did you mean `bravo`?] { 3 ancestors: undefined, 4 cause: undefined, 5 column: 8, 6 fatal: false, 7 line: 1, 8 place: { line: 1, column: 8 }, 9 reason: 'Unexpected unknown word `braavo`, did you mean `bravo`?', 10 ruleId: 'typo', 11 source: 'spell', 12 file: '~/index.text' 13 } 14]
This package exports the identifier VFile
.
There is no default export.
VFile(options?)
Create a new virtual file.
options
is treated as:
string
or Uint8Array
— {value: options}
URL
— {path: options}
VFile
— shallow copies its data over to the new fileobject
— all fields are shallow copied over to the new filePath 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 valueNew instance (VFile
).
1new VFile()
2new VFile('console.log("alpha");')
3new VFile(new Uint8Array([0x65, 0x78, 0x69, 0x74, 0x20, 0x31]))
4new VFile({path: path.join('path', 'to', 'readme.md')})
5new VFile({stem: 'readme', extname: '.md', dirname: path.join('path', 'to')})
6new VFile({other: 'properties', are: 'copied', ov: {e: 'r'}})
file.cwd
Base of path
(string
, default: process.cwd()
or '/'
in browsers).
file.data
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.
file.history
List of file paths the file moved between (Array<string>
).
The first is the original path and the last is the current path.
file.messages
List of messages associated with the file
(Array<VFileMessage>
).
file.value
Raw value (Uint8Array
, string
, undefined
).
file.basename
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).
file.dirname
Get or set the parent path (string?
, example: '~'
).
Cannot be set if there’s no path
yet.
file.extname
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.
file.path
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
.
file.stem
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.
VFile#fail(reason[, options])
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)
— configurationNothing (never
).
Message (VFileMessage
).
VFile#info(reason[, options])
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)
— configurationMessage (VFileMessage
).
VFile#message(reason[, options])
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)
— configurationMessage (VFileMessage
).
VFile#toString(encoding?)
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 understand value
as when it’s a
Uint8Array
Serialized file (string
).
Compatible
Things that can be passed to the constructor (TypeScript type).
1type Compatible = Options | URL | VFile | Value
Data
Custom info (TypeScript type).
Known attributes can be added to DataMap
.
1type Data = Record<string, unknown> & Partial<DataMap>
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.
1interface DataMap {}
1declare module 'vfile' { 2 interface DataMap { 3 // `file.data.name` is typed as `string` 4 name: string 5 } 6}
Map
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 withMessageOptions
Options to create messages (TypeScript type).
Options
An object with arbitrary fields and the following known fields (TypeScript type).
basename
(string
, optional)
— set basename
(name)cwd
(string
, optional)
— set cwd
(working directory)data
(Data
, optional)
— set data
(associated info)dirname
(string
, optional)
— set dirname
(path w/o basename)extname
(string
, optional)
— set extname
(extension with dot)history
(Array<string>
, optional)
— set history
(paths the file moved between)path
(URL | string
, optional)
— set path
(current path)stem
(string
, optional)
— set stem
(name without extension)value
(Value
, optional)
— set value
(the contents of the file)Reporter
Type for a reporter (TypeScript type).
1type Reporter<Settings = ReporterSettings> = ( 2 files: Array<VFile>, 3 options: Settings 4) => string
ReporterSettings
Configuration for reporters (TypeScript type).
1type ReporterSettings = Record<string, unknown>
Value
Contents of the file (TypeScript type).
Can either be text or a Uint8Array
structure.
1type Value = Uint8Array | string
The following fields are considered “non-standard”, but they are allowed, and some utilities use them:
map
(Map
)
— source map; this type is equivalent to the RawSourceMap
type from the
source-map
moduleresult
(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 reportersThere 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-reporter
s 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!
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 existing vulnerabilities detected
Reason
security policy file detected
Details
Reason
Found 1/30 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More