Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
viewmodel
Advanced tools
Node-viewmodel is a node.js module for multiple databases. It can be very useful if you work with (d)ddd, cqrs, eventdenormalizer, host, etc.
Node-viewmodel is a node.js module for multiple databases. It can be very useful if you work with (d)ddd, cqrs, eventdenormalizer, host, etc.
$ npm install viewmodel
var viewmodel = require('viewmodel');
viewmodel.read(function(err, repository) {
if(err) {
console.log('ohhh :-(');
return;
}
});
Make shure you have installed the required driver, in this example run: 'npm install mongodb'.
var viewmodel = require('viewmodel');
viewmodel.write(
{
type: 'mongodb',
host: 'localhost', // optional
port: 27017, // optional
dbName: 'viewmodel', // optional
timeout: 10000 // optional
},
function(err, repository) {
if(err) {
console.log('ohhh :-(');
return;
}
}
);
var repository = viewmodel.write({ type: 'mongodb' });
repository.on('connect', function() {
console.log('hello from event');
});
repository.on('disconnect', function() {
console.log('bye');
});
repository.connect();
var dummyRepo = repository.extend({
collectionName: 'dummy'
});
dummyRepo.get(function(err, vm) {
if(err) {
console.log('ohhh :-(');
return;
}
vm.set('myProp', 'myValue');
vm.set('myProp.deep', 'myValueDeep');
console.log(vm.toJSON());
console.log(vm.has('myProp.deep'));
dummyRepo.commit(vm, function(err) {
});
// or you can call commit directly on vm...
vm.commit(function(err) {
});
});
// the query object ist like in mongoDb...
dummyRepo.find({ color: 'green' }, function(err, vms) {
if(err) {
console.log('ohhh :-(');
return;
}
// vms is an array of all what is in the repository
var firstItem = vms[0];
console.log('the id: ' + firstItem.id);
console.log('the saved value: ' + firstItem.get('color'));
});
// the query object ist like in mongoDb...
dummyRepo.find({ color: 'green' }, { limit: 2, skip: 1 }, function(err, vms) {
if(err) {
console.log('ohhh :-(');
return;
}
// vms is an array of all what is in the repository
var firstItem = vms[0];
console.log('the id: ' + firstItem.id);
console.log('the saved value: ' + firstItem.get('color'));
});
// the query object ist like in mongoDb...
dummyRepo.findOne({ color: 'green' }, function(err, vm) {
if(err) {
console.log('ohhh :-(');
return;
}
console.log('the id: ' + vm.id);
if (vm.has('color')) {
console.log('the saved value: ' + vm.get('color'));
}
});
// the query object ist like in mongoDb...
dummyRepo.get('myId', function(err, vm) {
if(err) {
console.log('ohhh :-(');
return;
}
console.log('the id: ' + vm.id);
console.log('the saved value: ' + vm.get('color'));
});
dummyRepo.get('myId', function(err, vm) {
if(err) {
console.log('ohhh :-(');
return;
}
vm.destroy();
dummyRepo.commit(vm, function(err) {
});
// or you can call commit directly on vm...
vm.commit(function(err) {
});
});
myQueue.getNewId(function(err, newId) {
if(err) {
console.log('ohhh :-(');
return;
}
console.log('the new id is: ' + newId);
});
dummyRepo.clear(function(err) {
if(err) {
console.log('ohhh :-(');
return;
}
});
For mongodb you can define indexes for performance boosts in find function.
var dummyRepo = repository.extend({
collectionName: 'dummy',
indexes: [
'profileId',
// or:
{ profileId: 1 },
// or:
{ index: {profileId: 1}, options: {} }
]
});
The find function does ignore the query argument and always fetches all items in the collection.
Currently these databases are supported:
You can use your own db implementation by extending this...
var Repository = require('viewmodel').Repository,
util = require('util'),
_ = require('lodash');
function MyDB(options) {
Repository.call(this, options);
}
util.inherits(MyDB, Repository);
_.extend(MyDB.prototype, {
...
});
module.exports = MyDB;
Copyright (c) 2015 Adriano Raiano
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Node-viewmodel is a node.js module for multiple databases. It can be very useful if you work with (d)ddd, cqrs, eventdenormalizer, host, etc.
We found that viewmodel demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.