memfs

  • Version 4.8.2
  • Published
  • 878 kB
  • 1 dependency
  • 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

variable fs

const fs: IFs;

    variable vol

    const vol: _Volume;

      variable Volume

      const Volume: typeof _Volume;

        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 the fs 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 (1)

                                      Dev Dependencies (31)

                                      Peer Dependencies (0)

                                      No peer dependencies.

                                      Badge

                                      To add a badge like this onejsDocs.io badgeto 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>