0.0.20 • Published 2 years ago
@kiwilan/filesystem v0.0.20
Kiwilan's Node filesystem

Node package built to improve native filesystem with Laravel like helpers.
Installation
npm add @kiwilan/filesystemOr with pnpm:
pnpm add @kiwilan/filesystemUsage
const path = FsPath.root("tests/test.md");
const exists = await FsFile.exists(path);
if (exists) {
const content = await FsFile.get(path);
}Build locally
pnpm packageAdd to your project:
{
"dependencies": {
"@kiwilan/filesystem": "file:~/kiwilan-filesystem-*.tgz"
}
}