
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
@burna/osjs-monster-adapter
Advanced tools
An Adapter for os.js to work with swift saio object storage.
This is the SWIFT VFS (Server) Adapter for OS.js.
Install Openstack Swift All in One Deployment (SAIO) using this manual:
https://docs.openstack.org/swift/latest/development_saio.html
There are two approaches to install swift vfs adapter:
1- Go to below directory:
cd src/server
2- Create vfs directory:
mkdir vfs
3- Then go to vfs directory:
cd vfs
4- Clone adapter to this directory:
git clone https://github.com/BurnaSmartLab/osjs-monster-adapter.git
5- Then go to monster-adapter directory:
cd osjs-monster-adapter
6- At last use bellow command to install dependency:
npm install
Just execute bellow command:
npm i @burna/osjs-monster-adapter
// src/server/index.js
// If first approach for installing has used:
const monsterAdapter = require('./vfs/monster-adapter')
// If second approach for installing has used:
// const monsterAdapter = require('@burna/osjs-monster-adapter')
osjs.register(VFSServiceProvider, {
args: {
adapters: {
monster: monsterAdapter
}
}
});
Then create a mountpoint. Example using default Swift Account:
// src/server/config.js
{
vfs: {
mountpoints: [{
name: 'myMonster',
adapter: 'monster',
attributes: {
endpoint: "http://localhost:12345/auth/v1.0",
username: "test:tester",
password: "testing"
}
}]
}
}
// src/client/config.js
{
vfs: {
defaultPath: 'myMonster:/',
mountpoints: [{
name: 'myMonster',
label: 'Monster Drive'
}]
}
}
FAQs
An Adapter for os.js to work with swift saio object storage.
We found that @burna/osjs-monster-adapter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.