
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
[]
(https://travis-ci.org/AppPress/node-faux-knox)
A knox wrapper that allows you to use the local file system instead of S3
###Installation
npm install faux-knox
###Testing
npm test
###API
var knox = process.env.NODE_ENV === 'production'
? require('knox') : require('faux-knox');
var client = knox.createClient({
bucket: 'local/filesystem/dir'
//... other settings
});
//use client everywhere a regular knox client will be used.
####Implemented
#####list
function(options, callback)
callback(err, list)
list
is an object with a Contents array containing the returned files.
#####getFile
function(uri, headers, callback)
callback(err, cres)
cres
is a readable stream with headers attached.
#####putFile
function(from, to, callback)
callback(err, res)
from
is the path to a local file to be read
to
is the path to write the from bytes mounted in the bucket specified.
res.headers.statusCode
is 200 on successful creation.
#####putBuffer
function(buffer, to, headers, callback)
callback(err, res)
buffer
is the buffer to write
to
is where the buffer is written
headers
used by knox module, ignored here
res.headers.statusCode
is 200 on successful creation.
#####deleteFile
function(file, callback)
callback(err, res)
file
path in bucket to delete
res.headers.statusCode
is 204 on successful deletion.
###TODO
All of the other knox functionality
FAQs
Mock requests to knox module using file system
The npm package faux-knox receives a total of 791 weekly downloads. As such, faux-knox popularity was classified as not popular.
We found that faux-knox demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.