memfs
- Version 4.15.0
- Published
- 682 kB
- 4 dependencies
- Apache-2.0 license
Install
npm i memfs
yarn add memfs
pnpm add memfs
Overview
In-memory file-system with Node's fs API.
Index
Variables
Functions
Interfaces
Type Aliases
Variables
Functions
function createFsFromVolume
createFsFromVolume: (vol: _Volume) => IFs;
function memfs
memfs: (json?: NestedDirectoryJSON, cwd?: string) => { fs: IFs; vol: _Volume };
Creates a new file system instance.
Parameter json
File system structure expressed as a JSON object. Use
null
for empty directories and empty string for empty files.Parameter cwd
Current working directory. The JSON structure will be created relative to this path.
Returns
A
memfs
file system instance, which is a drop-in replacement for thefs
module.
Interfaces
interface DirectoryJSON
interface DirectoryJSON<T extends DirectoryContent = DirectoryContent> {}
index signature
[key: string]: T;
interface IFs
interface IFs extends _Volume {}
property constants
constants: typeof constants;
property Dirent
Dirent: new (...args: any[]) => Dirent;
property FSWatcher
FSWatcher: new () => FSWatcher;
property promises
promises: FsPromisesApi;
property ReadStream
ReadStream: new (...args: any[]) => misc.IReadStream;
property Stats
Stats: new (...args: any[]) => Stats;
property StatWatcher
StatWatcher: new () => StatWatcher;
property WriteStream
WriteStream: new (...args: any[]) => IWriteStream;
interface NestedDirectoryJSON
interface NestedDirectoryJSON<T extends DirectoryContent = DirectoryContent> {}
index signature
[key: string]: T | NestedDirectoryJSON;
Type Aliases
type IFsWithVolume
type IFsWithVolume = IFs & { __vol: _Volume;};
Package Files (2)
Dependencies (4)
Dev Dependencies (31)
- @semantic-release/changelog
- @semantic-release/git
- @semantic-release/npm
- @types/jest
- @types/mime
- @types/node
- app-root-path
- assert
- buffer
- html-webpack-plugin
- husky
- isomorphic-git
- jest
- path-browserify
- prettier
- process
- readable-stream
- rimraf
- semantic-release
- tar-stream
- ts-jest
- ts-loader
- ts-node
- tslint
- tslint-config-common
- typescript
- url
- util
- webpack
- webpack-cli
- webpack-dev-server
Peer Dependencies (0)
No peer dependencies.
Badge
To add a badge like this oneto your package's README, use the codes available below.
You may also use Shields.io to create a custom badge linking to https://www.jsdocs.io/package/memfs
.
- Markdown[![jsDocs.io](https://img.shields.io/badge/jsDocs.io-reference-blue)](https://www.jsdocs.io/package/memfs)
- HTML<a href="https://www.jsdocs.io/package/memfs"><img src="https://img.shields.io/badge/jsDocs.io-reference-blue" alt="jsDocs.io"></a>
- Updated .
Package analyzed in 4463 ms. - Missing or incorrect documentation? Open an issue for this package.