1.0.2 • Published 5 years ago

mongodb-moment v1.0.2

Weekly downloads
393
License
-
Repository
github
Last release
5 years ago

mongodb-moment

Make the mongodb node driver able to serialize moment.js objects.

Build Status

It example

const moment = require('moment');
require('mongodb-moment')(moment);

co(function*() {
  const id = new mongodb.ObjectId();
  yield db.collection('test').
    insertOne({ _id: id, createdAt: moment.utc('2011-06-01') });

  const res = yield db.collection('test').findOne();
  assert.deepEqual(res, { _id: id, createdAt: new Date('2011-06-01') });
  // acquit:ignore:start
  done();
  // acquit:ignore:end
})
// acquit:ignore:start
.catch(done);
// acquit:ignore:end