npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

schema-check-mongo-wrapper

v0.1.2

Published

Wrapper around [native mongodb javascript driver](https://github.com/mongodb/node-mongodb-native), that provides promise based (using [Vow promises](https://github.com/dfilatov/vow)) interface and data validation with [json schemas](http://json-schema.org

Downloads

16

Readme

schema-check-mongo-wrapper

Wrapper around native mongodb javascript driver, that provides promise based (using Vow promises) interface and data validation with json schemas.

Library interface is build to be as close as possible to mongo shell. All asyncronous code is hidden in library, except, actually operation on server and/or recieving data.

##Installation run

npm install git://github.com/anton-kotenko/schema-check-mongo-wrapper.git

or

npm install schema-check-mongo-wrapper

or add

"schema-check-mongo-wrapper": ">=0.1.0"

in package.json

##Api Library api is implemented in next classes

  • Connection
  • SafeCollection
  • CursorWrapper
  • SchemaStorage

###Connection Connection class is analog of native mongo driver's Db class, but also hides in itself code required to connect to database server. Api

  • Connection (url, connectionOptions) constructor
  • collection (collectionName)
var MongoWrapper = require('schema-check-mongo-wrapper'),
   connection = new MongoWrapper.Connection("mongodb://localhost:27017/testdb"),
   collection = connection.collection("myCollection");

###SafeCollection

SafeCollection is analog of native drivers Collection class, but methods save, insert and update methods, has posibility of checks if inserted/updated data is valid using json schema attached to collection. Provides a lot of methods from mongo native driver, with almost same interface. Most notable change is transformation from callback style into promise style

  • find (condition) returns promise to CursorWrapper
  • count (condition) returns promise to Number
  • insert (document, options) returns promise to inserted document
  • update (condition, update, options) return promise to updated documents count
  • remove (condition)

###CursorWrapper CursorWrapper wraps Cursor class. Implements almost same interface as original cursor, except callback style functions are replaced with promise style

  • toArray() returns promise to document array
  • sort (diretion) returns same cursor
  • limit (count) returns same cursor

###SchemaStorage SchemaStorage provides way to define schemas by url, that is usefull when building complex schemas from set of simple Example

Has next interface

  • addSchema (url, schema)
  • getSchema (url)

##Examples

###Simple example

Simple example: connect to database server and run some commands on collection

var MongoWrapper = require('schema-check-mongo-wrapper'),
    connection = new MongoWrapper.Connection("mongodb://localhost:27017/testdb"),
    collection = connection.collection("myCollection");

collection.insert({field: 123})
    .then(function (insertedDoc) {
        console.log('Document', insertedDoc, 'was inserted in collection');
        return collection.count({field: 123});
    })
    .then(function(docCount) {
        console.log('We have ', docCount, " documents that matches condition");
        return collection.update({field: 123}, {$set: {field: 543}});
    })
    .then(function (updateCount) {
        console.log(updateCount, ' documents was updated');
        return collection.find().toArray();
    })
    .then(function (documentsArray) {
        console.log('Collection contains next documents', documentsArray);
        return collection.find().sort({_id: 1}).limit(5).toArray();
    })
    .then(function (documentsArray) {
        console.log('First 5 documents from collection, sorted by _id field desc', documentsArray);
    })
    .fail(function (err) {
        console.log("Something fails ", err);
    })
    .done();

Example validate data

Example how to store data in mongo's collection with validation

var MongoWrapper = require('schema-check-mongo-wrapper'),
    connection = new MongoWrapper.Connection("mongodb://localhost:27017/testdb"),
    collection = connection.collection("myCollection");
    //declare schema for object with two fields a (string) and b (integer),
    //both required, and disallow any other fields
    schema = {
        name: 'Schema',
        type: 'object',
        properties: {
            a: {
                type: 'string'
            },
            b: {
                type: 'integer'
            }
        },
        required: ['a', 'b'],
        additionalProperties: false,
    };

collection
    .attachSchema(schema) //attach schema to collection. this schema will be used to verify documents on change
    .warnOnWrongData(true) //write messeges on console when "bad" document is processes
    .setCheckEnforcement(true); //disallow to insert documents, that mismatches schema
//or fetch collection with next code
//var collection = connection.collection('myCollection', schema, {warnOnWrongData: true, enforceChecks: true})

//{field: 123} obviously does not match schema, insert should fail
collection.insert({field: 123})
    .fail(function (error) {
        console.log('Can not insert document, it does not match schema', error);
        //{a: 'zzz', b: 123} is good document, so insert works
        return collection.insert({a: 'zzz', b: 123});
    })
    .then(function (insertedDoc) {
        console.log('Document', insertedDoc, 'was inserted in collection');
        //trying to add "field" field {$set: {field: 543}} => that's "bad" document,
        //update should fail
        return collection.update({a: 'zzz', b: 123}, {$set: {field: 543}});
    })
    .fail(function (error) {
        console.log('Can not update document, it does not match schema', error);
        //try to remove required field "a" {$unset: {a: ''}} => should fail
        return collection.update({a: 'zzz', b: 123}, {$unset: {a: ''}});
    })
    .fail(function (error) {
        console.log('Can not update document, it does not match schema', error);
        //just change values of "a" and "b" fields. Should work
        return collection.update({a: 'zzz', b: 123}, {a: 'qwerty', b: 5});
    })
    .then(function (updateCount) {
        console.log(updateCount, 'documents was updated');
    })
    .fail(function (err) {
        console.log("Something fails ", err);
    })
    .done();

Example validate data using complex schemas

var MongoWrapper = require('schema-check-mongo-wrapper'),
    connection = new MongoWrapper.Connection("mongodb://localhost:27017/testdb"),
    collection;

MongoWrapper.SchemaStorage.addSchema(
    'http://my.project/schemas/a',
    {
        type: 'string'
    }
);
MongoWrapper.SchemaStorage.addSchema(
    'http://my.project/schemas/b',
    {
        type: 'integer'
    }
);
MongoWrapper.SchemaStorage.addSchema(
    'http://my.project/schemas/full_schema',
    {
        name: 'Schema',
        type: 'object',
        properties: {
            a: {
                $ref: 'http://my.project/schemas/a'
            },
            b: {
                $ref: 'http://my.project/schemas/b'
            }
        },
        required: ['a', 'b'],
        additionalProperties: false,
    }
);

collection = connection.collection(
    "myCollection",
    "http://my.project/schemas/full_schema", //attach schema to collection. this schema will be used to verify documents on change
    {warnOnWrongData: true} //write messeges on console when "bad" document is processes
);

//{field: 123} obviously does not match schema, insert should fail
collection.insert({field: 123})
    .fail(function (error) {
        console.log('Can not insert document, it does not match schema', error);
        //{a: 'zzz', b: 123} is good document, so insert works
        return collection.insert({a: 'zzz', b: 123});
    })
    .then(function (insertedDoc) {
        console.log('Document', insertedDoc, 'was inserted in collection');
        //trying to add "field" field {$set: {field: 543}} => that's "bad" document,
        //update should fail
        return collection.update({a: 'zzz', b: 123}, {$set: {field: 543}});
    })
    .fail(function (error) {
        console.log('Can not update document, it does not match schema', error);
        //try to remove required field "a" {$unset: {a: ''}} => should fail
        return collection.update({a: 'zzz', b: 123}, {$unset: {a: ''}});
    })
    .fail(function (error) {
        console.log('Can not update document, it does not match schema', error);
        //just change values of "a" and "b" fields. Should work
        return collection.update({a: 'zzz', b: 123}, {a: 'qwerty', b: 5});
    })
    .then(function (updateCount) {
        console.log(updateCount, 'documents was updated');
    })
    .fail(function (err) {
        console.log("Something fails ", err);
    })
    .done();