New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

albatross

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

albatross

Albatross is a small library that makes accessing MongoDB from Node.js a breeze. It's goal is to be a thin wrapper that enables you to forget about connection state and get right to accessing your data.

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

Albatross

Albatross is a small library that makes accessing MongoDB from Node.js a breeze. It's goal is to be a thin wrapper that enables you to forget about connection state and get right to accessing your data.

Installation

npm install --save albatross

Usage

var albatross = require('albatross');

var db = albatross('mongodb://localhost/test');
var user = db.collection('user');

user
  .insert({ name: 'Linus', born: 1992 })
  .insert({ name: 'Steve', born: 1955 })
  .findOne({ born: 1992 }, function (err, doc) {
    if (err) { throw err; }

    console.log('Hello ' + doc.name);
  });

You can start querying the database right away, as soon as a connection is established it will start sending your commands to the server.

API

Module

The module exposes a single function to create a new Albatross instance. It also exposes the BSON Binary API on this function.

albatross(uri)

Creates a new instance of Albatross and connect to the specified uri.

BSON Binary API

The following functions are exposed on the module:

BSON
Binary
Code
DBRef
Double
Long
MaxKey
MinKey
ObjectID
Symbol
Timestamp

Albatross

.collection(name)

Returns a new instance of Collection bound to the collection named name.

.id(strOrObjectID)

Makes sure that the given argument is an ObjectID.

.close([cb])

Closes the connection to the server and calls callback with potential error as first argument.

Collection

.id(strOrObjectID)

Makes sure that the given argument is an ObjectID.

findById(id[, opts][, cb]) -> (err, doc)

Find one document with the specified id.

findOne(query[, opts][, cb]) -> (err, doc)

Find the first document that matches query.

find(query[, opts][, cb]) -> (err, docs)

Find all records that matches query.

count(query[, opts][, cb]) -> (err, count)

Count number of documents matching the query.

distinct(key[, query[, opts]][, cb]) -> (err, list)

Finds a list of distinct values for the given key.

note: if you specify opts you also need to specify query

insert(docs[, opts][, cb]) -> (err, docs)

Inserts a single document or a an array of documents.

Second argument to callback is the documents that was inserted. When called with an object instead of an array as the first argument, the callback receives an object instead of an array as well.

update(selector, document[, opts][, cb]) -> (err, nUpdated)

Update documents matching selector.

note: to update more than one document, specify multi: true in opts

remove(selector[, opts][, cb]) -> (err, nRemoved)

Removes documents specified by selector.

note: to only remove one document, specify single: true in opts

In depth documentation

For more in depth documentation please see the mongodb module which Albatross wraps, especially the Collection object.

Contributing

Pull requests are always welcome, please make sure to add tests and run mocha before submitting.

The tests requiers a MongoDB server running at localhost.

License

Albatross is licensed under the MIT license.

FAQs

Package last updated on 16 Aug 2015

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc