Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

breeze-mongodb

Package Overview
Dependencies
Maintainers
5
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

breeze-mongodb - npm Package Compare versions

Comparing version 0.0.8 to 0.0.9

README.md

6

mongoQuery.js

@@ -90,3 +90,3 @@ var mongodb = require('mongodb');

if (that.inlineCount) {
collection.count(that.filter, function(err, count) {
collection.countDocuments(that.filter, function(err, count) {
// Mongo doesn't handle limit = 0 as a real limit.

@@ -98,3 +98,3 @@ if (that.options && that.options.limit === 0) {

}
src = collection.find(that.filter, that.select, that.options);
src = collection.find(that.filter, that.options).project(that.select);
src.toArray(function (err, results) {

@@ -112,3 +112,3 @@ results = processResults(results, that.resultEntityType);

}
src = collection.find(that.filter, that.select, that.options);
src = collection.find(that.filter, that.options).project(that.select);
src.toArray(function (err, results) {

@@ -115,0 +115,0 @@ results = processResults(results, that.resultEntityType);

{
"name": "breeze-mongodb",
"description": "Classes and helper methods to allow Breeze - Mongo interop.",
"version": "0.0.8",
"version": "0.0.9",
"main": "main",

@@ -22,4 +22,3 @@ "dependencies": {

"author": "Jay Traband",
"license": "MIT",
"readme": "Provides server-side helper classes to facilitate BreezeJs <-> Mongo interop. See www.breeze.js.com and breeze.github.io/doc-node-mongodb/"
}
"license": "MIT"
}
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