Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
azureleveldown
Advanced tools
A drop-in replacement for LevelDOWN which persists data in Windows Azure Table Storage. Can be used as a back-end for LevelUP rather than an actual LevelDB store.
As of version 0.7, LevelUP allows you to pass a 'db'
option when you create a new instance. This will override the default LevelDOWN store with a LevelDOWN API compatible object.
npm install azureleveldown
var connection = 'DefaultEndpointsProtocol=https;AccountName=xxx;AccountKey=yyy'
var levelup = require('levelup');
var LevelAzureDown = require('./index');
var db = levelup(connection, {
// the 'db' option replaces LevelDOWN
db: function (connection) {
return new LevelAzureDown(connection)
}
})
// An azureleveldown database works within a single table and partition.
// These can be controlled by passing some settings in the consuctor
var db = levelup(connection, {
// the 'db' option replaces LevelDOWN
db: function (connection) {
return new LevelAzureDown(connection, {table:"table1", partitionKey: "partition1"})
}
})
// reading & writing data is done using the normal 'level' way:
db.put('my_key', 'my value', function(err){ ... });
db.get('my_key', function(err, data){
console.log(data.key + " = " + data.value);
});
db.del('another_key', function(err){ ... });
db.readStream()
.on('data', console.log)
.on('close', function () { console.log('the end') })
reverse
read streams are not currently supportedMIT
FAQs
An implementation of LevelDown for Windows Azure Table Storage
The npm package azureleveldown receives a total of 0 weekly downloads. As such, azureleveldown popularity was classified as not popular.
We found that azureleveldown 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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.