Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Extras not included in Node's fs module.
Install via npm:
npm install fs-ext
fs-ext imports all of the methods from the core 'fs' module, so you don't need two objects.
var fs = require('fs-ext');
var fd = fs.openSync('foo.txt', 'r');
fs.flock(fd, 'ex', function (err) {
if (err) {
return console.log("Couldn't lock file");
}
// file is locked
})
Asynchronous flock(2). No arguments other than a possible error are passed to the callback. Flags can be 'sh', 'ex', 'shnb', 'exnb', 'un' and correspond to the various LOCK_SH, LOCK_EX, LOCK_SH|LOCK_NB, etc.
Synchronous flock(2). Throws an exception on error.
Asynchronous lseek(2).
callback will be given two arguments (err, currFilePos).
whence can be 0 (SEEK_SET) to set the new position in bytes to offset, 1 (SEEK_CUR) to set the new position to the current position plus offset bytes (can be negative), or 2 (SEEK_END) to set to the end of the file plus offset bytes (usually negative or zero to seek to the end of the file).
Synchronous lseek(2). Throws an exception on error. Returns current file position.
Asynchronous utime(2).
Arguments atime
and mtime
are in seconds as for the system call. Note
that the number value of Date() is in milliseconds, so to use the 'now'
value with fs.utime()
you would have to divide by 1000 first, e.g.
Date.now()/1000
Just like for utime(2), the absence of the atime
and mtime
means 'now'.
Synchronous version of utime(). Throws an exception on error.
FAQs
Extensions to core 'fs' module.
The npm package fs-ext receives a total of 4,881 weekly downloads. As such, fs-ext popularity was classified as popular.
We found that fs-ext demonstrated a healthy version release cadence and project activity because the last version was released less than 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.