Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mirek/node-bson-cursor
Fast BSON traversal
https://github.com/mirek/node-bson-cursor
Last synced: about 1 month ago
JSON representation
Fast BSON traversal
- Host: GitHub
- URL: https://github.com/mirek/node-bson-cursor
- Owner: mirek
- License: mit
- Created: 2014-10-09T19:00:20.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-10T02:46:58.000Z (about 10 years ago)
- Last Synced: 2024-11-09T17:45:18.749Z (about 2 months ago)
- Language: JavaScript
- Size: 199 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Summary [![Build Status](https://travis-ci.org/mirek/node-bson-cursor.png?branch=master)](https://travis-ci.org/mirek/node-bson-cursor)
BSON cursor provides fast traversal/reads on well formed bson documents.
Much faster than standard approach if, for example, you want to scan or know the structure of millions MongoDB documents.
## Installation
npm install bson-cursor --save
## Usage
{ bson } = require 'bson'
{ structify, BufferReader } = require 'bson-cursor'# metadata accumulator
meta = {}docA = foo: bar: 'aaa'
docB = bar: baz: 2.12bsonA = new bson.BSON.serialize docA, false, true
bsonB = new bson.BSON.serialize docB, false, true# get struct from first one
structify new BufferReader(bsonA), false, meta# update with another struct
structify new BufferReader(bsonB), false, metaconsole.log JSON.stringify meta, false, ' '
...will print schema like:
{
"_types": [
"Object"
],
"foo": {
"_types": [
"Object"
],
"bar": {
"_types": [
"String"
]
}
},
"bar": {
"_types": [
"Object"
],
"baz": {
"_types": [
"Double"
]
}
}
}## License
The MIT License (MIT)
Copyright (c) 2014 Mirek Rusin
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.