Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
filesystem2use
Advanced tools
Allow to browse files like a graph where each file or directory is a node.
const {Node} = require("graph-fs");
Instantiate
const directory = new Node("/path/to/directory");
const file = directory.resolve('file.ext');
const sameFile = new Node("/path/to/directory/file.ext");
sameFile === file; // true (same instance)
Get infos
myFile.exists; // boolean
myFile.is.file; // true
myFile.is.directory; // false
myDirectory.is.directory; // true
myDirectory.is.file; // false
Path & name
myDirectory.toString(); // "/path/to/directory/"
myDirectory.absolute; // "/path/to/directory"
myDirectory.name; // "directory"
myFile.toString(); // "/path/to/file.ext"
myFile.absolute; // "/path/to/file.ext"
myFile.name; // "file.ext"
Navigate
const parent = file.parent
const sameParent = file.resolve("..")
parent === sameParent // true
Read
directory.children; // Node[] of files and directories
file.getContent([options = "utf8"]); // string
Create
// create a new directory
const newDirectory = directory.newDirectory("new-directory");
// create a directory recursively
const target = dir.resolve('this/path/does/not/exists');
target.exists; // false
target.asDirectoryRecursively();
target.exists; // true
target.is.directory; // true
Write
// create a new file
const newFile = directory.newFile("newFile.ext", [content]);
// force to write a file, even if it or its parents, still don't exist. It will create the full path to it.
file.overwrite(contentString);
Rename
const changedDir = directory.rename('changed'); // Node instance
directory.exists; // false
changedDir.exists; // true
Copy
const me2 = directory.copy('me2'); // Node instance
directory.exists; // true
me2.exists; // true
Move
const newLocation = directory.move('newLocation'); // Node instance
directory.exists; // false
newLocation.exists; // true
Clean
directory.clear() // delete all what's inside the directory
directory.delete() // delete the directory
FAQs
A collection of helpers for the Filesystem Facility
The npm package filesystem2use receives a total of 0 weekly downloads. As such, filesystem2use popularity was classified as not popular.
We found that filesystem2use demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.