Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@npmcli/move-file
Advanced tools
A fork of move-file with compatibility with all node 10.x versions.
Move a file (or directory)
The built-in
fs.rename()
is just a JavaScript wrapper for the C rename(2)
function, which doesn't
support moving files across partitions or devices. This module is what you
would have expected fs.rename()
to be.
fs.mkdir()
$ npm install @npmcli/move-file
const moveFile = require('@npmcli/move-file');
(async () => {
await moveFile('source/unicorn.png', 'destination/unicorn.png');
console.log('The file has been moved');
})();
Returns a Promise
that resolves when the file has been moved.
Type: string
File, or directory, you want to move.
Type: string
Where you want the file or directory moved.
Type: object
Type: boolean
Default: true
Overwrite existing destination file(s).
FAQs
move a file (fork of move-file)
The npm package @npmcli/move-file receives a total of 6,818,139 weekly downloads. As such, @npmcli/move-file popularity was classified as popular.
We found that @npmcli/move-file demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.