
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
This is an RxJS wrapper for the Node.js fs module. It is intended to track the fs API as closely as possible, with the following exceptions:
Stream
replaced by Observable
in the name. Where you would use pipe
for streams, you can use let
for RxFs. For example, RxFs.createReadStream
creates a stream and RxFs.createReadObservable
creates an observable.fs.createReadObservable
has property openSource
, which is an observable indicating the file has been opened.Example: move old.txt
to new.txt
var RxFs = require('rx-fs');
var inputPath = './old.txt';
var outputPath = './new.txt';
var source = RxFs.createReadObservable(inputPath);
var sink = RxFs.createWriteObservable(outputPath);
return source
.let(sink)
.subscribeOnCompleted(function() {
RxFs.unlink(inputPath).subscribeOnCompleted(done);
});
Not all methods are currently fully tested. API may change to better reflect latest version of fs API. Pull requests welcome!
See also this alternative that has a more full-featured API but does not match the current node fs API.
FAQs
RxJs wrapper for Node's fs module.
The npm package rx-fs receives a total of 15 weekly downloads. As such, rx-fs popularity was classified as not popular.
We found that rx-fs 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.