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

@carbon-io/leafnode

Package Overview
Dependencies
Maintainers
7
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@carbon-io/leafnode

Sync driver for MongoDB

latest
Source
npmnpm
Version
0.5.2
Version published
Maintainers
7
Created
Source

leafnode

Build Status

leafnode is a "synchronous" MongoDB driver. It is a wrapper around node-mongodb-native implemented using the node-fibers co-routine library.

leafnode is currently experimental and in alpha.

Example:

var connect = require('@carbon-io/leafnode').connect;

try {
   var db = connect("mongodb://localhost:27017/mydb");
   var c = db.getCollection("users");
   var results = c.find({"firstName" : "Joe"}).toArray();
   console.log(results);
} catch e {
   console.log(e);
}

No callbacks needed. If an error occurs an exception is thrown.

We say "synchronous" because leafnode code execution is still asynchronous under the hood, but uses Fibers to provide a synchronous programming interface. One should therefore note that many functions and methods of this driver actually yield control to the event loop during execution. For more on Fibers see the documenentation here.

Installation

Using npm

% cd <your-app>
% npm install leafnode

From git

% git clone git@github.com:objectlabs/leafnode.git
% cd <your-app>
% npm install <path-to-leafnode>

To run unit tests

% node ./test/all.js

Using leafnode in your code

In order to use leafnode you need to properly bootstrap your application by creating a Fiber for the code to run in.

The basic idea is as follows:

require('fibers');

Fiber(function() {
  //do stuff
}).run();

In practice you will want to do this at the beginning of a command line program or, if using an application toolkit like express, as you process each request. One nice way of achieving this in express is to add a middleware function that wraps request handling in a Fiber.

app.use(function(req, res, next) {
   Fiber(function() {
      next();
   }).run();
});

Open issues

  • Support for options in MongoDB URI uneven

Keywords

leaf-node

FAQs

Package last updated on 02 Nov 2017

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