
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
modella-pouchdb
Advanced tools
Component:
component install staygrimm/modella-pouchdb
npm:
npm install modella-pouchdb
var model = require('modella');
var pouch = require('modella-pouchdb');
var PouchDB = require('pouchdb');
var UserDB = new PouchDB('Users');
var User = model('User')
.attr('_id')
.attr('name')
.attr('email');
User.use(pouch(UserDB));
/**
* Initialize
*/
var user = new User;
user.
._id(new Date().toISOString())
.name('foo')
.email('foo@gmail.com');
user.save(function(err) {
// do something
});
Initialize adaptor with a PouchDB instance.
Get all models (static method)
Find a model (static method)
Create a design document and store it in PouchDB instance
Query view named name
, with PouchDB options
, returning callback
with an error
or array of result docs
Save the model (instance method)
Remove the model (instance method)
modella-pouchdb attaches a _rev
attribute to every model. This attribute is used and managed by the adaptor when updating documents in the database. Note that if you modify this attribute on your models you will most likely encounter errors.
npm install && make test
MIT
FAQs
pouchdb adaptor for modella
The npm package modella-pouchdb receives a total of 2 weekly downloads. As such, modella-pouchdb popularity was classified as not popular.
We found that modella-pouchdb 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.