
Security News
Opengrep Adds Apex Support and New Rule Controls in Latest Updates
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
dalicious is a toolkit for your data access layer.
Currently supports:
Postgres
Sql Server
Initializing
var dalicious = require('dalicious');
var Mssql = require('dalicious/mssql');
var Store = Mssql.define({user: 'sa', password: 'secret'});
var Dal = dalicious.define(Store);
var Model = dalicious.Model;
// define your models using prototypical inheritance. Model base can
// be your own class intead of dalicious.Model
function User() {
Model.apply(this, arguments);
}
util.inherits(User);
User.prototype.create = function(email, cb) {
this.dao.query({insert: {email: email}, returning: ['id']}).one(cb);
});
// register models
Dal.dal('User', {model: User, table: 'Users'});
Dal.dalify(function(err) {
// dal is ready for use
});
Using
var dal = new Dal();
// Use your model
dal.User.create(function(err, id) {
...
});
// Use low-level data access object (DAO)
dal.store.UserDao.findById(id, function(err, row) {
...
});
dal.store.UserDao.query({
select: ['id', 'name'],
where: {id: id}
}).all(function(err, rows) {
...
});
// Use plain sql
dal
.sql('select * from Users where createdAt > $1', [new Date('1-9-2013')])
.all(function(err, rows) {
...
});
// use T-sql (sql server)
dal.store
.tsql(
'insert into images (image) output inserted.id values (@buffer)',
{buffer: buffer}
)
.all(function(err, rows) {
...
});
Transactions
var tx = dal.transactable();
var userId;
async.series([
function(cb) {
tx.begin(cb)
},
function(cb) {
tx.User.query(...).function(err, id) { userId = id; cb() }
},
function(cb) {
tx.Account.query(...)
},
function(cb) {
tx.sql(...)
}
], function(err) {
if (err) return tx.rollback();
tx.commit();
})
Multi DB
var dalicious = require('dalicious');
var Mssql = require('dalicious/mssql');
var MainDb = Mssql.define({user: 'sa', password: 'secret', database: 'main'});
var ReportDb = Mssql.define({user: 'sa', password: 'secret', database: 'report'});
var Dal = dalicious.define(MainDb);
var dal = new Dal();
var ReportDal = dalicious.define(ReportDb);
var reportDal = new ReportDal();
...
Data Access Layer (DAL)
Store
Model
this.dao
Data Access Object (DAO)
schema
for inspectionFAQs
_dalicious_ is a toolkit for your data access layer.
The npm package dalicious receives a total of 2 weekly downloads. As such, dalicious popularity was classified as not popular.
We found that dalicious 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
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.