
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@eik/sink-file-system
Advanced tools
Sink implementation that persists files on the local file system.
Sink implementation that persists files on the local file system.
npm install @eik/sink-file-system
import path from 'node:path';
import { pipeline } from 'node:stream';
import Sink from '@eik/sink-file-system';
import express from 'express';
const app = express();
const sink = new Sink({
sinkFsRootPath: path.join(process.cwd(), 'eik-files'),
});
app.get('/file.js', async (req, res, next) => {
try {
const file = await sink.read('/path/to/file/file.js');
pipeline(file.stream, res, (error) => {
if (error) return next(error);
});
} catch (error) {
next(error);
}
});
app.listen(8000);
The sink instance has the following API:
Method for writing a file to storage.
This method takes the following arguments:
filePath
- String - Path to the file to be stored - Required.contentType
- String - The content type of the file - Required.Resolves with a writable stream.
import { pipeline } from 'node:stream';
const fromStream = new SomeReadableStream();
const sink = new Sink({ ... });
try {
const file = await sink.write('/path/to/file/file.js', 'application/javascript');
pipeline(fromStream, file.stream, (error) => {
if (error) console.log(error);
});
} catch (error) {
console.log(error);
}
Method for reading a file from storage.
This method takes the following arguments:
filePath
- String - Path to the file to be read - Required.Resolves with a ReadFile object which holds metadata about
the file and a readable stream with the byte stream of the file on the
.stream
property.
import { pipeline } from 'node:stream';
const toStream = new SomeWritableStream();
const sink = new Sink({ ... });
try {
const file = await sink.read('/path/to/file/file.js');
pipeline(file.stream, toStream, (error) => {
if (error) console.log(error);
});
} catch (error) {
console.log(error);
}
Method for deleting a file in storage.
This method takes the following arguments:
filePath
- String - Path to the file to be deleted - Required.Resolves if file is deleted and rejects if file could not be deleted.
const sink = new Sink({ ... });
try {
await sink.delete('/path/to/file/file.js');
} catch (error) {
console.log(error);
}
Method for checking if a file exist in the storage.
This method takes the following arguments:
filePath
- String - Path to the file to be checked for existence - Required.Resolves if file exists and rejects if file does not exist.
const sink = new Sink({ ... });
try {
await sink.exist('/path/to/file/file.js');
} catch (error) {
console.log(error);
}
FAQs
Sink implementation that persists files on the local file system.
The npm package @eik/sink-file-system receives a total of 143 weekly downloads. As such, @eik/sink-file-system popularity was classified as not popular.
We found that @eik/sink-file-system demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.