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.
larvitfiles
Advanced tools
Storage of files with an API and database to use in web environments
npm i larvitfiles;
const FileLib = require('larvitfiles');
const db = require('larvitdb');
const fs = require('fs');
db.setup(conf); // Only needed once per script. See https://github.com/larvit/larvitdb for details
const fileLib = new FileLib({
db: db,
storagePath: '/tmp/larvitfiles',
// All below settings are optional, and their default is whats shown here
log: new (new (require('larvitutils'))).Log(),
prefix: '/dbfiles/'
});
await fileLib.ready(); // Not needed to run actions, but no action will start until this is returning true
fs.readFile('/some/file.txt', function (err, data) {
let file;
if (err) throw err;
const file = await fileLib.save({
slug: 'slug/foo/bar.txt',
data: data,
metadata: {metadata1: 'metavalue1', metadata2: ['multiple', 'values']}, // optional, will erase previous metadata if left blank
//uuid: uuid() - optional
});
console.log('file saved with uuid: ' + file.uuid);
console.log('metadata: ' + JSON.stringify(file.metadata));
console.log('slug: ' + file.slug);
});
By default .save() will not accept a duplicate slug without also supplying a matching uuid.
If the below script is ran when a file with the slug "slug/foo/bar.txt" already exists in the database, this will throw an error.
const file = await fileLib.save({
slug: 'slug/foo/bar.txt',
data: Buffer.from('någe')
});
To overwrite the existing file, on the same uuid, use option "updateMatchingSlug":
const file = await fileLib.save({
slug: 'slug/foo/bar.txt',
data: Buffer.from('någe'),
updateMatchingSlug: true // Defaults to false
});
const file = await fileLib.get({slug: 'slug/foo/bar.txt'});
// or
const file = await fileLib.get({uuid: 'uuid of file'});
console.log('file saved with uuid: ' + file.uuid);
console.log('metadata: ' + JSON.stringify(file.metadata));
console.log('slug: ' + file.slug);
// file data in file.data
fileLib.rm(await fileLib.uuidFromSlug('slog/foo/bar.txt'));
console.log('File is now removed from storage');
const files = await fileLib.list();
console.log(result); // Array of objects with uuid, slugs and metadata, but NOT file data as values.
// This will only return files with metadata
// 1) "foo" = "bar" (and possibly other values as well)
// and
// 2) "zoo" = anything
const options = {
filter: {
metadata: {
foo: 'bar',
zoo: true
},
operator: 'and' // or 'or'. 'and' is default
}
};
const files = await fileLib.list(options);
console.log(files); // Array of objects with uuid, slugs and metadata, but NOT file data as values.
And if several values should exist on a single metadata do this:
// This will only return files with metadata
// 1) "foo" = "bar" (and possibly other values as well)
// and
// 2) "foo" = "baz" (and possibly other values as well)
const options = {
filter: {
metadata: {
foo: ['bar', 'baz']
}
}
};
const files = await fileLib.list(options);
console.log(files); // Array of objects with uuid, slugs and metadata, but NOT file data as values.
});
FAQs
Storage of files with an API and database to use in web environments
The npm package larvitfiles receives a total of 303 weekly downloads. As such, larvitfiles popularity was classified as not popular.
We found that larvitfiles demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.