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.
Quell is a MySQL Active Record solution for NodeJS based on Backbone.Model.
Quell does not support joins. It is built to manage individual records in a database on a per-row basis.
Quell does not manage table schema, but will automatically load schema and sanitize input against table column types.
##Installation
NPM: npm install mysql quell
Quell is built to work with connection pools from node-mysql and mysql2.
##Usage
var mysql = require('mysql');
var pool = mysql.createPool({ /* MySQL Connection Settings */});
var quell = require('quell');
var Book = quell('books', { connection: pool });
var Author = quell('authors', { connection: pool });
var tperry = new Author({
firstname: 'Terry',
lastname: 'Pratchett'
});
var nightWatch = new Book({
title: 'Night Watch'
});
tperry.save().then(function () {
nightWatch.set('authorid', tperry.get('id'));
return nightWatch.save();
});
Visit quelljs.com for documentation.
##Running Unit Tests
From inside the repository root, run npm install
to install the test dependencies.
Run npm run test:unit
to run just unit tests.
Run npm run test:int
to run integration tests. Note, running the integration test requires a mktmp.io account configuration.
Run npm run test:cover
to run all tests with code coverage.
Run npm run lint
to validate ESLint rules.
npm test
runs all of the above.
FAQs
A no-frills active record implementation for node-mysql.
The npm package quell receives a total of 1 weekly downloads. As such, quell popularity was classified as not popular.
We found that quell 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.