Gathering detailed insights and metrics for @visulima/fs
Gathering detailed insights and metrics for @visulima/fs
Gathering detailed insights and metrics for @visulima/fs
Gathering detailed insights and metrics for @visulima/fs
@visulima/pail
Highly configurable Logger for Node.js, Edge and Browser.
@ffras4vnpm/enim-recusandae-assumenda
<p align="center"> <a href="https://visulima.com"> <picture> <source media="(prefers-color-scheme: dark)" srcset=""> <img src="" height="128"> </picture> <h1 align="center">Visulima</h1> </a> </p>
@micromint1npm/voluptate-incidunt-occaecati
<p align="center"> <a href="https://visulima.com"> <picture> <source media="(prefers-color-scheme: dark)" srcset=""> <img src="" height="128"> </picture> <h1 align="center">Visulima</h1> </a> </p>
Visulima is the next-gen JavaScript framework for JAMStack blogs, sites & apps.
npm install @visulima/fs
Typescript
Module System
Min. Node Version
Node Version
NPM Version
@visulima/string@1.0.2
Updated on Mar 22, 2025
@visulima/string@1.0.1
Updated on Mar 21, 2025
@visulima/string@1.0.0
Updated on Mar 21, 2025
@visulima/package@3.5.4
Updated on Mar 12, 2025
@visulima/cerebro@1.1.40
Updated on Mar 07, 2025
@visulima/pail@2.1.22
Updated on Mar 07, 2025
TypeScript (93.38%)
JavaScript (4.8%)
MDX (1.31%)
Handlebars (0.31%)
CSS (0.11%)
Shell (0.1%)
Total Downloads
83,363
Last Day
224
Last Week
1,462
Last Month
7,497
Last Year
81,140
MIT License
13 Stars
2,491 Commits
3 Forks
2 Watchers
17 Branches
2 Contributors
Updated on Mar 22, 2025
Minified
Minified + Gzipped
Latest Version
3.1.2
Package Id
@visulima/fs@3.1.2
Unpacked Size
328.04 kB
Size
60.65 kB
File Count
142
NPM Version
10.9.2
Node Version
18.20.7
Published on
Mar 07, 2025
Cumulative downloads
Total Downloads
Last Day
-30.2%
224
Compared to previous day
Last Week
-30.3%
1,462
Compared to previous week
Last Month
6.2%
7,497
Compared to previous month
Last Year
3,550%
81,140
Compared to previous year
1
1
Human friendly file system utilities for Node.js
[![typescript-image]][typescript-url] [![npm-image]][npm-url] [![license-image]][license-url]
Daniel Bannert's open source work is supported by the community on GitHub Sponsors
1npm install @visulima/fs
1yarn add @visulima/fs
1pnpm add @visulima/fs
Note: If you want to parse or write YAML, you'll need to install
yaml
as well.
1npm install yaml
1yarn add yaml
1pnpm add yaml
After installing
yaml
, you can use thereadYaml
,readYamlSync
andwriteYaml
,writeYamlSync
functions from@visulima/fs/yaml
.
1import { walk } from "@visulima/fs"; 2 3const filesAndFolders: string[] = []; 4 5for await (const index of walk(`${__dirname}/fixtures`, {})) { 6 filesAndFolders.push(index.path); 7} 8 9console.log(filesAndFolders);
1import { walkSync } from "@visulima/fs"; 2 3const filesAndFolders: string[] = []; 4 5for (const index of walkSync(`${__dirname}/fixtures`, {})) { 6 filesAndFolders.push(index.path); 7} 8 9console.log(filesAndFolders);
walk
and walkSync
Type: string
The directory to start from.
Type: object
Type: number
Default: Infinity
Optional: true
Description: The maximum depth of the file tree to be walked recursively.
Type: boolean
Default: true
Optional: true
Description: Indicates whether file entries should be included or not.
Type: boolean
Default: true
Optional: true
Description: Indicates whether directory entries should be included or not.
Type: boolean
Default: true
Optional: true
Description: Indicates whether symlink entries should be included or not. This option is meaningful only if followSymlinks is set to false.
Type: boolean
Default: false
Optional: true
Description: Indicates whether symlinks should be resolved or not.
Type: string[]
Default: undefined
Optional: true
Description: List of file extensions used to filter entries. If specified, entries without the file extension specified by this option are excluded.
Type: (RegExp | string)[]
Default: undefined
Optional: true
Description: List of regular expression or glob patterns used to filter entries. If specified, entries that do not match the patterns specified by this option are excluded.
Type: (RegExp | string)[]
Default: undefined
Optional: true
Description: List of regular expression or glob patterns used to filter entries. If specified, entries matching the patterns specified by this option are excluded.
Find a file or directory by walking up parent directories.
1import { findUp } from "@visulima/fs"; 2 3// Returns a Promise for the found path or undefined if it could not be found. 4const file = await findUp("package.json"); 5 6console.log(file);
Find a file or directory by walking up parent directories.
1import { findUpSync } from "@visulima/fs"; 2 3// Returns the found path or undefined if it could not be found. 4const file = findUpSync("package.json"); 5 6console.log(file);
findUp
and findUpSync
Type: string[] | string | ((directory: PathLike) => PathLike | Promise<PathLike | typeof FIND_UP_STOP> | typeof FIND_UP_STOP)
Sync Type: string[] | string | ((directory: PathLike) => PathLike | typeof FIND_UP_STOP)
The name of the file or directory to find.
If an array is specified, the first item that exists will be returned.
A function that will be called with each directory until it returns a string with the path, which stops the search, or the root directory has been reached and nothing was found. Useful if you want to match files with certain patterns, set of permissions, or other advanced use-cases.
When using async mode, the matcher may optionally be an async or promise-returning function that returns the path.
Type: object
Type: URL | string
Default: process.cwd()
The directory to start from.
Type: string
Default: 'file'
Values: 'file' | 'directory'
The type of path to match.
Type: URL | string
Default: Root directory
A directory path where the search halts if no matches are found before reaching this point.
Type: boolean
Default: true
Allow symbolic links to match if they point to the target file or directory.
Read a file.
1import { readFile } from "@visulima/fs"; 2 3// Returns a Promise for the file contents. 4const file = await readFile("package.json"); 5 6console.log(file);
Read a file.
1import { readFileSync } from "@visulima/fs"; 2 3// Returns the file contents. 4 5const file = readFileSync("package.json"); 6 7console.log(file);
readFile
and readFileSync
Type: string
The path to the file to read.
Type: object
Type: boolean
Default: true
Optional: true
Description: Indicates whether the file contents should be returned as a Buffer or a string.
Type: "brotli" | "gzip" | undefined
Default: undefined
Optional: true
Description: The file compression.
Type: "ascii" | "base64" | "base64url" | "hex" | "latin1" | "ucs-2" | "ucs2" | "utf-8" | "utf-16le" | "utf8" | "utf16le" | undefined
Default: utf8
Optional: true
Type: number | string | undefined
Default: 'r'
Optional: true
Check if a file or directory exists and is accessible.
1import { isAccessible } from "@visulima/fs"; 2 3// Returns a Promise for the result. 4const file = await isAccessible("package.json"); 5 6console.log(file);
Check if a file or directory exists and is accessible.
1import { isAccessibleSync } from "@visulima/fs"; 2 3// Returns the result. 4 5const file = isAccessibleSync("package.json"); 6 7console.log(file);
isAccessible
and isAccessibleSync
Type: string
The path to the file or directory to check.
Type: number
Default: fs.constants.F_OK
Optional: true
Description: The accessibility mode.
Parse JSON with more helpful errors.
1import { parseJson, JSONError } from "@visulima/fs/utils"; 2 3const json = '{\n\t"foo": true,\n}'; 4 5JSON.parse(json); 6/* 7undefined:3 8} 9^ 10SyntaxError: Unexpected token } 11*/ 12 13parseJson(json); 14/* 15JSONError: Unexpected token } in JSON at position 16 while parsing near '{ "foo": true,}' 16 17 1 | { 18 2 | "foo": true, 19> 3 | } 20 | ^ 21*/ 22 23parseJson(json, "foo.json"); 24/* 25JSONError: Unexpected token } in JSON at position 16 while parsing near '{ "foo": true,}' in foo.json 26 27 1 | { 28 2 | "foo": true, 29> 3 | } 30 | ^ 31*/
parseJson
Type: string
The JSON string to parse.
Type: Function
Prescribes how the value originally produced by parsing is transformed, before being returned. See JSON.parse docs for more.
Type: string
The filename to use in error messages.
JSONError
Exposed for use in instanceof
checks.
Type: string
The filename displayed in the error message.
Type: string
The printable section of the JSON which produces the error.
Defined in: packages/fs/src/error/already-exists-error.ts:4
Error thrown when file already exists.
Error
1new AlreadyExistsError(message): AlreadyExistsError
Defined in: packages/fs/src/error/already-exists-error.ts:9
Creates a new instance.
string
The error message.
1Error.constructor
1get code(): string
Defined in: packages/fs/src/error/already-exists-error.ts:14
string
1set code(_name): void
Defined in: packages/fs/src/error/already-exists-error.ts:19
string
void
1get name(): string
Defined in: packages/fs/src/error/already-exists-error.ts:24
string
1set name(_name): void
Defined in: packages/fs/src/error/already-exists-error.ts:29
string
void
1Error.name
1static captureStackTrace(targetObject, constructorOpt?): void
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/globals.d.ts:91
Create .stack property on a target object
object
Function
void
1Error.captureStackTrace
1optional cause: unknown;
Defined in: node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.error.d.ts:26
1Error.cause
1message: string;
Defined in: node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es5.d.ts:1077
1Error.message
1optional stack: string;
Defined in: node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es5.d.ts:1078
1Error.stack
1static optional prepareStackTrace: (err, stackTraces) => any;
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/globals.d.ts:98
Optional override for formatting stack traces
Error
CallSite
[]
any
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
1Error.prepareStackTrace
1static stackTraceLimit: number;
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/globals.d.ts:100
1Error.stackTraceLimit
Defined in: packages/fs/src/error/directory-error.ts:4
Error thrown when an operation is not allowed on a directory.
Error
1new DirectoryError(message): DirectoryError
Defined in: packages/fs/src/error/directory-error.ts:9
Creates a new instance.
string
The error message.
1Error.constructor
1get code(): string
Defined in: packages/fs/src/error/directory-error.ts:14
string
1set code(_name): void
Defined in: packages/fs/src/error/directory-error.ts:19
string
void
1get name(): string
Defined in: packages/fs/src/error/directory-error.ts:24
string
1set name(_name): void
Defined in: packages/fs/src/error/directory-error.ts:29
string
void
1Error.name
1static captureStackTrace(targetObject, constructorOpt?): void
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/globals.d.ts:91
Create .stack property on a target object
object
Function
void
1Error.captureStackTrace
1optional cause: unknown;
Defined in: node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.error.d.ts:26
1Error.cause
1message: string;
Defined in: node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es5.d.ts:1077
1Error.message
1optional stack: string;
Defined in: node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es5.d.ts:1078
1Error.stack
1static optional prepareStackTrace: (err, stackTraces) => any;
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/globals.d.ts:98
Optional override for formatting stack traces
Error
CallSite
[]
any
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
1Error.prepareStackTrace
1static stackTraceLimit: number;
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/globals.d.ts:100
1Error.stackTraceLimit
Defined in: packages/fs/src/error/not-empty-error.ts:4
Error thrown when a directory is not empty.
Error
1new NotEmptyError(message): NotEmptyError
Defined in: packages/fs/src/error/not-empty-error.ts:9
Creates a new instance.
string
The error message.
1Error.constructor
1get code(): string
Defined in: packages/fs/src/error/not-empty-error.ts:14
string
1set code(_name): void
Defined in: packages/fs/src/error/not-empty-error.ts:19
string
void
1get name(): string
Defined in: packages/fs/src/error/not-empty-error.ts:24
string
1set name(_name): void
Defined in: packages/fs/src/error/not-empty-error.ts:29
string
void
1Error.name
1static captureStackTrace(targetObject, constructorOpt?): void
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/globals.d.ts:91
Create .stack property on a target object
object
Function
void
1Error.captureStackTrace
1optional cause: unknown;
Defined in: node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.error.d.ts:26
1Error.cause
1message: string;
Defined in: node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es5.d.ts:1077
1Error.message
1optional stack: string;
Defined in: node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es5.d.ts:1078
1Error.stack
1static optional prepareStackTrace: (err, stackTraces) => any;
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/globals.d.ts:98
Optional override for formatting stack traces
Error
CallSite
[]
any
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
1Error.prepareStackTrace
1static stackTraceLimit: number;
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/globals.d.ts:100
1Error.stackTraceLimit
Defined in: packages/fs/src/error/not-found-error.ts:4
Error thrown when a file or directory is not found.
Error
1new NotFoundError(message): NotFoundError
Defined in: packages/fs/src/error/not-found-error.ts:9
Creates a new instance.
string
The error message.
1Error.constructor
1get code(): string
Defined in: packages/fs/src/error/not-found-error.ts:14
string
1set code(_name): void
Defined in: packages/fs/src/error/not-found-error.ts:19
string
void
1get name(): string
Defined in: packages/fs/src/error/not-found-error.ts:24
string
1set name(_name): void
Defined in: packages/fs/src/error/not-found-error.ts:29
string
void
1Error.name
1static captureStackTrace(targetObject, constructorOpt?): void
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/globals.d.ts:91
Create .stack property on a target object
object
Function
void
1Error.captureStackTrace
1optional cause: unknown;
Defined in: node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.error.d.ts:26
1Error.cause
1message: string;
Defined in: node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es5.d.ts:1077
1Error.message
1optional stack: string;
Defined in: node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es5.d.ts:1078
1Error.stack
1static optional prepareStackTrace: (err, stackTraces) => any;
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/globals.d.ts:98
Optional override for formatting stack traces
Error
CallSite
[]
any
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
1Error.prepareStackTrace
1static stackTraceLimit: number;
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/globals.d.ts:100
1Error.stackTraceLimit
Defined in: packages/fs/src/error/permission-error.ts:4
Error thrown when an operation is not permitted.
Error
1new PermissionError(message): PermissionError
Defined in: packages/fs/src/error/permission-error.ts:9
Creates a new instance.
string
The error message.
1Error.constructor
1get code(): string
Defined in: packages/fs/src/error/permission-error.ts:14
string
1set code(_name): void
Defined in: packages/fs/src/error/permission-error.ts:19
string
void
1get name(): string
Defined in: packages/fs/src/error/permission-error.ts:24
string
1set name(_name): void
Defined in: packages/fs/src/error/permission-error.ts:29
string
void
1Error.name
1static captureStackTrace(targetObject, constructorOpt?): void
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/globals.d.ts:91
Create .stack property on a target object
object
Function
void
1Error.captureStackTrace
1optional cause: unknown;
Defined in: node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.error.d.ts:26
1Error.cause
1message: string;
Defined in: node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es5.d.ts:1077
1Error.message
1optional stack: string;
Defined in: node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es5.d.ts:1078
1Error.stack
1static optional prepareStackTrace: (err, stackTraces) => any;
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/globals.d.ts:98
Optional override for formatting stack traces
Error
CallSite
[]
any
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
1Error.prepareStackTrace
1static stackTraceLimit: number;
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/globals.d.ts:100
1Error.stackTraceLimit
Defined in: packages/fs/src/error/walk-error.ts:7
Error thrown in walk or walkSync during iteration.
Error
1new WalkError(cause, root): WalkError
Defined in: packages/fs/src/error/walk-error.ts:12
Constructs a new instance.
unknown
string
1Error.constructor
1get name(): string
Defined in: packages/fs/src/error/walk-error.ts:21
string
1set name(_name): void
Defined in: packages/fs/src/error/walk-error.ts:26
string
void
1Error.name
1static captureStackTrace(targetObject, constructorOpt?): void
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/globals.d.ts:91
Create .stack property on a target object
object
Function
void
1Error.captureStackTrace
1optional cause: unknown;
Defined in: node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.error.d.ts:26
1Error.cause
1message: string;
Defined in: node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es5.d.ts:1077
1Error.message
1root: string;
Defined in: packages/fs/src/error/walk-error.ts:9
File path of the root that's being walked.
1optional stack: string;
Defined in: node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es5.d.ts:1078
1Error.stack
1static optional prepareStackTrace: (err, stackTraces) => any;
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/globals.d.ts:98
Optional override for formatting stack traces
Error
CallSite
[]
any
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
1Error.prepareStackTrace
1static stackTraceLimit: number;
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/globals.d.ts:100
1Error.stackTraceLimit
Re-exports JSONError
1function collect(directory, options): Promise<string[]>
Defined in: packages/fs/src/find/collect.ts:4
string
WalkOptions
= {}
Promise
<string
[]>
1function collectSync(directory, options): string[]
Defined in: packages/fs/src/find/collect-sync.ts:4
string
WalkOptions
= {}
string
[]
1function detect(content): "\n" | "\r\n"
Defined in: packages/fs/src/eol.ts:20
Detect the EOL character for string input. Returns null if no newline.
string
"\n" | "\r\n"
1function emptyDir(dir, options?): Promise<void>
Defined in: packages/fs/src/remove/empty-dir.ts:19
Ensures that a directory is empty. Deletes directory contents if the directory is not empty. If the directory does not exist, it is created. The directory itself is not deleted.
string
| URL
Promise
<void
>
1function emptyDirSync(dir, options?): void
Defined in: packages/fs/src/remove/empty-dir-sync.ts:18
Ensures that a directory is empty. Deletes directory contents if the directory is not empty. If the directory does not exist, it is created. The directory itself is not deleted.
string
| URL
void
1function ensureDir(directory): Promise<void>
Defined in: packages/fs/src/ensure/ensure-dir.ts:12
Ensures that the directory exists. If the directory structure does not exist, it is created. Like mkdir -p.
string
| URL
Promise
<void
>
1function ensureDirSync(directory): void
Defined in: packages/fs/src/ensure/ensure-dir-sync.ts:12
Ensures that the directory exists. If the directory structure does not exist, it is created. Like mkdir -p.
string
| URL
void
1function ensureFile(filePath): Promise<void>
Defined in: packages/fs/src/ensure/ensure-file.ts:16
Ensures that the file exists. If the file that is requested to be created is in directories that do not exist, these directories are created. If the file already exists, it is NOTMODIFIED.
string
| URL
Promise
<void
>
1function ensureFileSync(filePath): void
Defined in: packages/fs/src/ensure/ensure-file-sync.ts:16
Ensures that the file exists. If the file that is requested to be created is in directories that do not exist, these directories are created. If the file already exists, it is NOTMODIFIED.
string
| URL
void
1function ensureLink(source, destination): Promise<void>
Defined in: packages/fs/src/ensure/ensure-link.ts:15
Ensures that the hard link exists. If the directory structure does not exist, it is created.
string
| URL
string
| URL
Promise
<void
>
1function ensureLinkSync(source, destination): void
Defined in: packages/fs/src/ensure/ensure-link-sync.ts:15
Ensures that the hard link exists. If the directory structure does not exist, it is created.
string
| URL
string
| URL
void
1function ensureSymlink(
2 target,
3 linkName,
4type?): Promise<void>
Defined in: packages/fs/src/ensure/ensure-symlink.ts:28
Ensures that the link exists, and points to a valid file. If the directory structure does not exist, it is created. If the link already exists, it is not modified but error is thrown if it is not point to the given target.
the source file path
string
| URL
the destination link path
string
| URL
Type
the type of the symlink, or null to use automatic detection
Promise
<void
>
A void promise that resolves once the link exists.
1function ensureSymlinkSync(
2 target,
3 linkName,
4 type?): void
Defined in: packages/fs/src/ensure/ensure-symlink-sync.ts:28
Ensures that the link exists, and points to a valid file. If the directory structure does not exist, it is created. If the link already exists, it is not modified but error is thrown if it is not point to the given target.
the source file path
string
| URL
the destination link path
string
| URL
Type
the type of the symlink, or null to use automatic detection
void
A void.
1function findUp(name, options): Promise<string>
Defined in: packages/fs/src/find/find-up.ts:11
FindUpOptions
= {}
Promise
<string
>
1function findUpSync(name, options): string
Defined in: packages/fs/src/find/find-up-sync.ts:11
FindUpOptions
= {}
string
1function format(content, eol): string
Defined in: packages/fs/src/eol.ts:36
Format the file to the targeted EOL.
string
"\n" | "\r\n"
string
1function isAccessible(path, mode?): Promise<boolean>
Defined in: packages/fs/src/is-accessible.ts:9
Returns a Promise that resolves to a boolean indicating if the path is accessible or not.
string
| URL
number
Promise
<boolean
>
1function isAccessibleSync(path, mode?): boolean
Defined in: packages/fs/src/is-accessible-sync.ts:9
Returns a boolean indicating if the path is accessible or not.
string
| URL
number
boolean
1function move( 2 sourcePath, 3 destinationPath, 4options): Promise<void>
Defined in: packages/fs/src/move/index.ts:35
Move a file asynchronously.
string
The file you want to move.
string
Where you want the file moved.
MoveOptions
= {}
Configuration options.
Promise
<void
>
A Promise
that resolves when the file has been moved.
import { moveFile } from '@visulima/fs';
await moveFile('source/test.png', 'destination/test.png');
console.log('The file has been moved');
1function moveSync(
2 sourcePath,
3 destinationPath,
4 options?): void
Defined in: packages/fs/src/move/index.ts:61
Move a file synchronously.
string
The file you want to move.
string
Where you want the file moved.
Configuration options.
void
Nothing is returned.
import { moveFileSync } from '@visulima/fs';
moveFileSync('source/test.png', 'destination/test.png');
console.log('The file has been moved');
1function readFile<O>(path, options?): Promise<ContentType<O>>
Defined in: packages/fs/src/read/read-file.ts:20
• O extends ReadFileOptions
<"brotli"
| "gzip"
| "none"
> = undefined
string
| URL
O
Promise
<ContentType
<O
>>
1function readFileSync<O>(path, options?): ContentType<O>
Defined in: packages/fs/src/read/read-file-sync.ts:18
• O extends ReadFileOptions
<"brotli"
| "gzip"
| "none"
> = undefined
string
| URL
O
ContentType
<O
>
1function readJson<T>(path, options?): Promise<T>
Defined in: packages/fs/src/read/read-json.ts:8
• T extends JsonValue
string
| URL
Promise
<T
>
1function readJson<T>( 2 path, 3 reviver, 4options?): Promise<T>
Defined in: packages/fs/src/read/read-json.ts:10
• T extends JsonValue
string
| URL
(this
, key
, value
) => any
Promise
<T
>
1function readJsonSync<T>(path, options?): T
Defined in: packages/fs/src/read/read-json-sync.ts:8
• T extends JsonValue
string
| URL
T
1function readJsonSync<T>( 2 path, 3 reviver, 4 options?): T
Defined in: packages/fs/src/read/read-json-sync.ts:10
• T extends JsonValue
string
| URL
(this
, key
, value
) => any
T
1function remove(path, options): Promise<void>
Defined in: packages/fs/src/remove/remove.ts:5
string
| URL
number
If an EBUSY
, EMFILE
, ENFILE
, ENOTEMPTY
, or
EPERM
error is encountered, Node.js will retry the operation with a linear
backoff wait of retryDelay
ms longer on each try. This option represents the
number of retries. This option is ignored if the recursive
option is not
true
.
Default
10
number
The amount of time in milliseconds to wait between retries.
This option is ignored if the recursive
option is not true
.
Default
1100
Promise
<void
>
1function removeSync(path, options): void
Defined in: packages/fs/src/remove/remove-sync.ts:5
string
| URL
number
If an EBUSY
, EMFILE
, ENFILE
, ENOTEMPTY
, or
EPERM
error is encountered, Node.js will retry the operation with a linear
backoff wait of retryDelay
ms longer on each try. This option represents the
number of retries. This option is ignored if the recursive
option is not
true
.
Default
10
number
The amount of time in milliseconds to wait between retries.
This option is ignored if the recursive
option is not true
.
Default
1100
void
1function rename( 2 source, 3 destination, 4options?): Promise<void>
Defined in: packages/fs/src/move/index.ts:85
Rename a file asynchronously.
string
The file you want to rename.
string
The name of the renamed file.
Configuration options.
Promise
<void
>
A Promise
that resolves when the file has been renamed.
import { renameFile } from '@visulima/fs';
await renameFile('test.png', 'tests.png', {cwd: 'source'});
console.log('The file has been renamed');
1function renameSync(
2 source,
3 destination,
4 options?): void
Defined in: packages/fs/src/move/index.ts:109
Rename a file synchronously.
string
The file you want to rename.
string
The name of the renamed file.
Configuration options.
void
A Promise
that resolves when the file has been renamed.
import {renameFileSync} from '@visulima/fs';
renameFileSync('test.png', 'tests.png', {cwd: 'source'});
console.log('The file has been renamed');
1function walk(directory, __namedParameters): AsyncIterableIterator<WalkEntry>
Defined in: packages/fs/src/find/walk.ts:49
Walks the file tree rooted at root, yielding each file or directory in the tree filtered according to the given options. Options:
string
| URL
WalkOptions
= {}
AsyncIterableIterator
<WalkEntry
>
1function walkSync(directory, __namedParameters): IterableIterator<WalkEntry>
Defined in: packages/fs/src/find/walk-sync.ts:40
Same as walk
but uses synchronous ops
string
| URL
WalkOptions
= {}
IterableIterator
<WalkEntry
>
1function writeFile(
2 path,
3 content,
4options?): Promise<void>
Defined in: packages/fs/src/write/write-file.ts:15
string
| URL
string
| ArrayBuffer
| ArrayBufferView
<ArrayBufferLike
>
Promise
<void
>
1function writeFileSync(
2 path,
3 content,
4 options?): void
Defined in: packages/fs/src/write/write-file-sync.ts:15
string
| URL
string
| ArrayBuffer
| ArrayBufferView
<ArrayBufferLike
>
void
1function writeJson(
2 path,
3 data,
4options): Promise<void>
Defined in: packages/fs/src/write/write-json.ts:11
string
| URL
unknown
WriteJsonOptions
= {}
Promise
<void
>
1function writeJsonSync(
2 path,
3 data,
4 options): void
Defined in: packages/fs/src/write/write-json-sync.ts:11
string
| URL
unknown
WriteJsonOptions
= {}
void
1const CRLF: "\r\n";
Defined in: packages/fs/src/eol.ts:9
End-of-line character for Windows platforms.
1const EOL: "\n" | "\r\n";
Defined in: packages/fs/src/eol.ts:14
End-of-line character evaluated for the current platform.
1const F_OK: 0 = 0;
Defined in: packages/fs/src/constants.ts:2
Is the path visible to the calling process?
1const FIND_UP_STOP: typeof FIND_UP_STOP;
Defined in: packages/fs/src/constants.ts:13
1const LF: "\n";
Defined in: packages/fs/src/eol.ts:6
End-of-line character for POSIX platforms such as macOS and Linux.
1const R_OK: 4 = 4;
Defined in: packages/fs/src/constants.ts:5
Is the path readable to the calling process?
1const W_OK: 2 = 2;
Defined in: packages/fs/src/constants.ts:8
Is the path writable to the calling process?
1const X_OK: 1 = 1;
Defined in: packages/fs/src/constants.ts:11
Is the path executable to the calling process?
Defined in: packages/fs/src/types.ts:56
Pick
<Dirent
, "isDirectory"
| "isFile"
| "isSymbolicLink"
| "name"
>1isDirectory(): boolean
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/fs.d.ts:190
Returns true
if the fs.Dirent
object describes a file system
directory.
boolean
v10.10.0
1Pick.isDirectory
1isFile(): boolean
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/fs.d.ts:184
Returns true
if the fs.Dirent
object describes a regular file.
boolean
v10.10.0
1Pick.isFile
1isSymbolicLink(): boolean
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/fs.d.ts:205
Returns true
if the fs.Dirent
object describes a symbolic link.
boolean
v10.10.0
1Pick.isSymbolicLink
1name: string;
Defined in: node_modules/.pnpm/@types+node@18.19.71/node_modules/@types/node/fs.d.ts:222
The file name that this fs.Dirent
object refers to. The type of this
value is determined by the options.encoding
passed to readdir or readdirSync.
v10.10.0
1Pick.name
1path: string;
Defined in: packages/fs/src/types.ts:57
Defined in: packages/fs/src/types.ts:9
1optional extensions: string[];
Defined in: packages/fs/src/types.ts:15
List of file extensions used to filter entries. If specified, entries without the file extension specified by this option are excluded.
1{undefined}
1optional followSymlinks: boolean;
Defined in: packages/fs/src/types.ts:20
Indicates whether symlinks should be resolved or not.
1{false}
1optional includeDirs: boolean;
Defined in: packages/fs/src/types.ts:25
Indicates whether directory entries should be included or not.
1{true}
1optional includeFiles: boolean;
Defined in: packages/fs/src/types.ts:30
Indicates whether file entries should be included or not.
1{true}
1optional includeSymlinks: boolean;
Defined in: packages/fs/src/types.ts:36
Indicates whether symlink entries should be included or not.
This option is meaningful only if followSymlinks
is set to false
.
1{true}
1optional match: (string | RegExp)[];
Defined in: packages/fs/src/types.ts:42
List of regular expression or glob patterns used to filter entries. If specified, entries that do not match the patterns specified by this option are excluded.
1{undefined}
1optional maxDepth: number;
Defined in: packages/fs/src/types.ts:47
The maximum depth of the file tree to be walked recursively.
1{Infinity}
1optional skip: (string | RegExp)[];
Defined in: packages/fs/src/types.ts:53
List of regular expression or glob patterns used to filter entries. If specified, entries matching the patterns specified by this option are excluded.
1{undefined}
1type CodeFrameLocation = object;
Defined in: packages/fs/src/types.ts:91
1optional column: number;
1line: number;
1type EmptyDirOptions = object;
Defined in: packages/fs/src/types.ts:188
1optional maxRetries: number;
If an EBUSY
, EMFILE
, ENFILE
, ENOTEMPTY
, or
EPERM
error is encountered, Node.js will retry the operation with a linear
backoff wait of retryDelay
ms longer on each try. This option represents the
number of retries. This option is ignored if the recursive
option is not
true
.
10
1optional retryDelay: number;
The amount of time in milliseconds to wait between retries.
This option is ignored if the recursive
option is not true
.
1100
1type FindUpName = 2 | string[] 3 | string 4 | (directory) => FindUpNameFnResult;
Defined in: packages/fs/src/types.ts:180
1type FindUpNameFnResult = 2 | PathLike 3 | Promise<PathLike | typeof FIND_UP_STOP> 4 | typeof FIND_UP_STOP 5 | undefined;
Defined in: packages/fs/src/types.ts:178
1type FindUpNameSync = 2 | string[] 3 | string 4 | (directory) => FindUpNameSyncFnResult;
Defined in: packages/fs/src/types.ts:185
1type FindUpNameSyncFnResult = PathLike | typeof FIND_UP_STOP | undefined;
Defined in: packages/fs/src/types.ts:183
1type FindUpOptions = object;
Defined in: packages/fs/src/types.ts:170
1optional allowSymlinks: boolean;
1optional cwd: URL | string;
1optional stopAt: URL | string;
1optional type: "directory" | "file";
1type JsonReplacer = (number | string)[] | (this, key, value) => unknown | null;
Defined in: packages/fs/src/types.ts:143
1type JsonReviver = Parameters<typeof JSON["parse"]>["1"];
Defined in: packages/fs/src/types.ts:89
1type MoveOptions = object;
Defined in: packages/fs/src/move/types.ts:3
1optional cwd: URL | string;
The working directory to find source files. The source and destination path are relative to this.
1process.cwd()
1readonly optional directoryMode: FilePermissions;
Permissions for created directories.
It has no effect on Windows.
10o777
1readonly optional overwrite: boolean;
Overwrite existing destination file.
1true
1type ReadFileEncoding = 2 | "ascii" 3 | "base64" 4 | "base64url" 5 | "hex" 6 | "latin1" 7 | "ucs-2" 8 | "ucs2" 9 | "utf-8" 10 | "utf-16le" 11 | "utf8" 12 | "utf16le";
Defined in: packages/fs/src/types.ts:61
1type ReadFileOptions<C> = object;
Defined in: packages/fs/src/types.ts:63
• C
1optional buffer: boolean;
Return content as a Buffer. Default: false
1optional compression: C;
Compression method to decompress the file against. Default: none
1optional encoding: ReadFileEncoding;
The encoding to use. Default: utf8
https://nodejs.org/api/buffer.html#buffer_buffers_and_character_encodings
1optional flag: number | string;
The flag used to open the file. Default: r
1type ReadJsonOptions = CodeFrameOptions & object;
Defined in: packages/fs/src/types.ts:104
1optional beforeParse: (source) => string;
string
string
1type WriteFileOptions = object;
Defined in: packages/fs/src/types.ts:108
1optional chown: object;
The group and user ID used to set the file ownership. Default: undefined
1gid: number;
1uid: number;
1optional encoding: BufferEncoding | null;
The encoding to use. Default: utf8
1optional flag: string;
The flag used to write the file. Default: w
1optional mode: number;
The file mode (permission and sticky bits). Default: 0o666
1optional overwrite: boolean;
Indicates whether the file should be overwritten if it already exists. Default: false
1optional recursive: boolean;
Recursively create parent directories if needed. Default: true
1type WriteJsonOptions = WriteFileOptions & object;
Defined in: packages/fs/src/types.ts:146
1optional detectIndent: boolean;
Detect indentation automatically if the file exists. Default: false
1optional indent: number | string;
The space used for pretty-printing.
Pass in undefined
for no formatting.
1optional replacer: JsonReplacer;
Passed into JSON.stringify
.
1optional stringify: (data, replacer, space) => string;
Override the default JSON.stringify
method.
unknown
number
| string
| undefined
string
1function brotliSize(input, options?): Promise<number>
Defined in: packages/fs/src/size.ts:109
Asynchronously calculates the Brotli compressed size of the input. Uses memory-efficient streaming for large inputs.
string
| URL
| Buffer
<ArrayBufferLike
> | Readable
BrotliOptions
Promise
<number
>
1function brotliSizeSync(input, options?): numbe
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
1 out of 1 merged PRs checked by a CI test -- score normalized to 10
Reason
project has 4 contributing companies or organizations
Details
Reason
no dangerous workflow patterns detected
Reason
update tool detected
Details
Reason
license file detected
Details
Reason
30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
SAST tool is run on all commits
Details
Reason
dependency not pinned by hash detected -- score normalized to 8
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Score
Last Scanned on 2025-04-01T07:30:39Z
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