New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

merlin

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

merlin

Merlin is an ORM for node JS that provides an extensive API, model relations, a plugins interface, and can connect to any database with a driver.

latest
npmnpm
Version
0.0.1-0
Version published
Maintainers
1
Created
Source

Merlin ORM

Merlin is an ORM (Object Relational Mapper) designed for the flexablity and preformance needed when creating large scale applications. Merlin's major advatages include a database driver interface, enabling you to use and database you like, a plugin interface, allowing to to extend or modify any aspect of the ORM with plugins, and a streaming CRUD interface.

Examples

Basic Find

Customer.find({ ... }, function(err, customers) {
    ...
});

Streaming Find

var stream = Customer.find({ ... });

stream.forEach(function(err, customer) { ... });
// OR
stream.pipe(outStream);

Basic Insert

Customer.insert([ { ... }, ... ], function(err, customers) {
    ...
});

Streaming Insert

inStream.pipe(Customer.insert()).pipe(outStream);

FAQs

Package last updated on 01 Oct 2014

Did you know?

Socket

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.

Install

Related posts