@nodelib/fs.macchiato

A set of classes for easy testing of built-in structures of FS

Usage no npm install needed!

<script type="module">
  import nodelibFsMacchiato from 'https://cdn.skypack.dev/@nodelib/fs.macchiato';
</script>

README

@nodelib/fs.macchiato

A set of classes for easy testing of built-in structures of FS.

Install

$ npm install @nodelib/fs.macchiato

Usage

import { Stats, Dirent } from '@nodelib/fs.macchiato';

const stats = new Stats();
const dirent = new Dirent();

API

Stats

Creates a fake instance of fs.Stats. Can accept options to control parameter values.

const stats = new Stats({
    isSymbolicLink: true,
    ino: 3
});

Dirent

Creates a fake instance of fs.Dirent. Can accept options to control parameter values.

const dirent = new Dirent({
    isSymbolicLink: true
});

Changelog

See the Releases section of our GitHub project for changelogs for each release version.

License

This software is released under the terms of the MIT license.