
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
file-system
Advanced tools
This module make file opertaion apis simple, you don't need to care the dir exits. and the api is same as node's filesystem. This is no exists time cost for this plugin.
var fs = require('file-system');
fs.mkdir('1/2/3/4/5', [mode], function(err) {});
fs.mkdirSync('1/2/3/4/5', [mode]);
fs.writeFile('path/test.txt', 'aaa', function(err) {})
npm install file-system --save
file extend node fs origin methods, and overwrite some methods with next list chart
var file = require('file-system');
var fs = require('fs');
file.readFile === fs.readFile // true
The api is same as node's mkdir
The api is same as node's mkdir
The api is same as node's writeFile
The api is same as node's writeFile
The api equal file-match
Asynchronously copy a file into newpath
srcpath
requireddestpath
requiredoptions
options.encoding
[options.encoding=utf8]options.done(err)
options.process(content)
fs.copyFile('deom.png', 'dest/demo.png', {
done: function(err) {
console.log('done');
}
});
The api same as copyFile, but it's synchronous
fs.copyFileSync('demo.png', 'dest/demo.png');
fs.copyFileSync('demo.css', 'dest/demo.css', {
process: function(contents) {
return contents;
}
})
Recurse into a directory, executing callback for each file and folder. if the filename is undefiend, the callback is for folder, otherwise for file.
dirpath
requiredfilter
callback(filepath, filename, relative)
fs.recurse('path', function(filepath, relative, filename) { });
fs.recurse('path', [
'*.css',
'**/*.js',
'path/*.html',
'!**/path/*.js'
], function(filepath, relative, filename) {
if (filename) {
// it's file
} else {
// it's folder
}
});
// Only using files
fs.recurse('path', function(filepath, relative, filename) {
if (!filename) return;
});
The api is same as recurse, but it is synchronous
fs.recurseSync('path', function(filepath, relative, filename) {
});
fs.recurseSync('path', ['**/*.js', 'path/**/*.html'], function(filepath, relative, filename) {
});
Recurse into a directory, remove all of the files and folder in this directory.
fs.rmdirSync('path');
Recurse into a directory, copy all files into dest.
dirpath
requireddestpath
requiredoptions
options.filter
options.process(contents, filepath, relative)
options.noProcess
fs.copySync('path', 'dest', { clear: true });
fs.copySync('src', 'dest/src');
fs.copySync('src', 'dest/src', { filter: ['*.js', 'path/**/*.css'] });
fs.copySync('path', 'dest', {
noProcess: '**/*.{jpg, png}', // Don't process images
process: function(contents, filepath, relative) {
// only process file content
return contents;
// or custom destpath
return {
contents: '',
filepath: ''
};
}
});
//Handler self files
fs.copySync('path', 'path', { filter: ['*.html.js'], process: function(contents, filepath) {} });
Deprecated, move to base64
Deprecated, move to base64Sync
FAQs
Strengthen the ability of file system
The npm package file-system receives a total of 61,123 weekly downloads. As such, file-system popularity was classified as popular.
We found that file-system 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.