MySQL Date for Javascript
extends javascript's Date object with four new methods designed to assist with handling MySQL Timestamps.
Examples
toMysqlDate & toMysqlUTCDate methods:
var date = new Date();
date.toMysqlDate();
date.toMysqlUTCDate();
fromMysqlDate & fromMysqlUTCDate methods:
Date.fromMysqlDate('1979-03-28 23:45:37');
Date.fromMysqlUTCDate('2013-03-28 11:11:52');
Installtion
Installation Using NPM
npm install mysqldate
Usage:
require('mysqldate');
Installation Using Bower
bower install mysqldate
Insert before your scripts:
<script src="bower_components/mysqldate/mysqldate.js" type="text/javascript"></script>