mongoose-unix-timestamp

1.0.6 • Public • Published

mongoose-unix-timestamp

Features

  • create created_at column for auto generate time while create this document in unix format
  • create updated_at column for auto generate time while update this document in unix format

Tech

Mongoose-unix-timestamp uses a number of open source projects to work properly:

  • [node.js] - evented I/O for the backend
  • [Express] - fast node.js network app framework

And of course this is open source and open to contribute on GitHub.

Installation

cd /path/to/your/app
$ npm install mongoose-unix-timestamp

Usage

const mongoose = require('mongoose');
const Schema = mongoose.Schema;
const unixTimestamp = require('mongoose-unix-timestamp');
 
const user = new Schema({
    full_name: String,
    email: String,
});
 
user.plugin(unixTimestamp);
 
const model = mongoose.model('User', user);

Package Sidebar

Install

npm i mongoose-unix-timestamp

Weekly Downloads

196

Version

1.0.6

License

GNU

Unpacked Size

46.1 kB

Total Files

8

Last publish

Collaborators

  • markrady