Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Convenience layer for Mongo's GridFS on Node.js applications
This module uses Aaron Heckmann's gridfs-stream module to stream data into GridFS.
npm install --save fi-gridfs
var gridfs = require('fi-gridfs');
You must initialize it with your current Mongo instance and db connection before using it:
gridfs.init(db, mongo);
If you're using mongoose, just pass mongoose.connection.db
and mongoose.mongo
:
var mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/your-db-name', options);
mongoose.connection.on('error', function (err) {
throw err;
});
mongoose.connection.once('open', function () {
gridfs.init(mongoose.connection.db, mongoose.mongo);
});
You can write from a path String
pointing to a file, a Stream.Readable
object created from the fs
module or a Buffer
.
You can define your source as a String
:
var source = '/path/to/the/file.ext';
As a Stream.Readable
:
var source = fs.createReadStream('/path/to/the/file.ext');
Or as a Buffer
:
var source = new Buffer('important buffer data here');
And then save it to GridFS with:
gridfs.write(source, function (err, fsfile) {
if (err) {
throw err;
}
/* Do whatever you want with your fsfile */
console.log("The file %s named %d has a length of %d", fsfile._id, fsfile.filename, fsfile.length);
});
A common fsfile Object
should look like this:
{
_id: ObjectId,
filename: String,
contentType: String,
length: Number,
chunkSize: Number,
uploadDate: Date,
aliases: Object,
metadata: Object,
md5: String
}
To read a file you must provide a String
than can be either a valid ObjectId
or a file name.
So, you can define your file as an ObjectId
:
var file = '55a52e49a562f0bb2627f38e';
Or as a file name:
var file = 'secret_document.docx';
And then get access to the file with:
gridfs.read(file, function (err, fsfile, rs) {
if (err) {
throw err;
}
/* Now you have your fsfile object and a nice read stream */
});
The rs
parameter is a Stream.Readable
object that can be piped, written or anything that Stream.Readable
's can do.
To remove a file you must provide a String
than can be either a valid ObjectId
or a file name.
You can remove the file via it's ObjectId
:
var file = '55a52e49a562f0bb2627f38e';
Or it's file name:
var file = 'secret_document.docx';
And then remove the file with:
gridfs.remove(file, function (err) {
if (err) {
throw err;
}
/* File has been removed */
});
FAQs
Convenience layer for Mongo's GridFS on Node.js applications
We found that fi-gridfs 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.