@teamteanpm2024/beatae-aliquid-id
v1.0.6
Published
Improved fork of `fs-extra` with extra [sic] features! `@teamteanpm2024/beatae-aliquid-id` provides support for Node 16 and above. Node 17 is required for better feature support.
Downloads
25
Maintainers
Readme
@teamteanpm2024/beatae-aliquid-id
Improved fork of fs-extra
with extra [sic] features!
@teamteanpm2024/beatae-aliquid-id
provides support for Node 16 and above. Node 17 is required for better feature support.
Installation
npm install @teamteanpm2024/beatae-aliquid-id
pnpm install @teamteanpm2024/beatae-aliquid-id
yarn add @teamteanpm2024/beatae-aliquid-id
Or install with your preferred package manager (yarn, pnpm, ...)
Usage
@teamteanpm2024/beatae-aliquid-id
is a mostly drop-in replacement for the node.js core fs
module. All methods in fs
can be used in their standard forms in @teamteanpm2024/beatae-aliquid-id, with some
improvements.
You don't ever need to include the original fs
module again:
const fs = require('fs'); // this is no longer necessary
you can now do this:
const fs = require('@teamteanpm2024/beatae-aliquid-id');
or if you prefer to make it clear that you're using @teamteanpm2024/beatae-aliquid-id
and not fs
, you may want to name your
fs
variable @teamteanpm2024/beatae-aliquid-id
like so:
const @teamteanpm2024/beatae-aliquid-id = require('@teamteanpm2024/beatae-aliquid-id');
you can also keep both, but it's redundant:
const fs = require('fs');
const @teamteanpm2024/beatae-aliquid-id = require('@teamteanpm2024/beatae-aliquid-id');
Breaking changes from node:fs
The callback-based implementation of fs.exists
now uses a propper error-first callback system like mz/fs
.
Improvements on node:fs
All the improvements from mz/fs
are included,
which also includes improvements from graceful-fs
.
Most methods are async by default, returning a Promise that resolves to the method's result, or rejects if the operation fails.
Sync methods on the other hand will throw if an error occurs, and directly return the resulting value to the caller if the operation succeeds.
You can also use the methods in the legacy node.js form, passing a callback as the last parameter,
as a function that takes (error, result)
parameters.
Example use:
const fs = require('@teamteanpm2024/beatae-aliquid-id');
// or
// import * as fs from '@teamteanpm2024/beatae-aliquid-id';
// Async with promises:
fs.copy('/tmp/myfile', '/tmp/mynewfile')
.then(() => console.log('success!'))
.catch(err => console.error(err));
// Async with callbacks:
fs.copy('/tmp/myfile', '/tmp/mynewfile', err => {
if (err) return console.error(err);
console.log('success!');
});
// Sync:
try {
fs.copySync('/tmp/myfile', '/tmp/mynewfile');
console.log('success!');
} catch (err) {
console.error(err);
}
// Async/Await:
async function copyFiles() {
try {
await fs.copy('/tmp/myfile', '/tmp/mynewfile');
console.log('success!');
} catch (err) {
console.error(err);
}
}
copyFiles();
Methods
The documentation is available at https://uwx-node-modules.github.io/@teamteanpm2024/beatae-aliquid-id/. Also, the package is fully typed with TypeScript.
Third Party
File / Directory Watching
If you want to watch for changes to files or directories, then you should use chokidar.
Misc.
- mfs - Monitor your @teamteanpm2024/beatae-aliquid-id calls.
Hacking on @teamteanpm2024/beatae-aliquid-id
Do you want to hack on @teamteanpm2024/beatae-aliquid-id? Well, you probably shouldn't. Still, you can go ahead and send a PR.
Please, no changes to anything in the lib
folder; the contents of that folder are taken entirely
verbatim from fs-extra, so they should be submitted upstream.
Running the Test Suite
@teamteanpm2024/beatae-aliquid-id contains like at least 4 tests that pass.
npm run lint
: runs eslintnpm run test
: runs the testsnpm run test-no-fse
: runs the tests, except for fs-extra tests
Windows
If you run the tests on the Windows and receive a lot of symbolic link EPERM
permission errors,
it's because on Windows you need elevated privilege to create symbolic links. You can either run the
tests as Administrator or run npm run test-no-fse
to test only @teamteanpm2024/beatae-aliquid-id-exclusive methods, which doesn't
include symbolic links
Legal
Licensed under MIT. Full license text available at LICENSE.txt
fs-extra
is copyright (c) 2011-2017 JP Richardson
@teamteanpm2024/beatae-aliquid-id
is copyright © 2016-2018 uwx, some rights reserved.
Parts of the documentation were taken from other modules and the Node.js fs
module.
Relevant licenses are included at the following locations:
- LICENSE.DefinitelyTyped-generator.txt
- LICENSE.DefinitelyTyped.txt
- LICENSE.dive.txt
- LICENSE.diveSync.txt
- LICENSE.fs-extra.txt
- LICENSE.fs-vacuum.txt
- LICENSE.jsonfile.txt
- LICENSE.make-dir.txt
- LICENSE.nodejs.txt
- LICENSE.path-is-inside.txt
- LICENSE.universalify.txt
fs-extra
and @teamteanpm2024/beatae-aliquid-id
are not endorsed by or affiliated with Joyent or the Node.js Foundation.
@teamteanpm2024/beatae-aliquid-id
is not endorsed by or affiliated with JP Richardson.