date-store

Easily persist or get stored dates/times. Useful for conditionally making updates in an application based on the amount of time that has passed.
Please consider following this project's author, Jon Schlinkert, and consider starring the project to show your :heart: and support.
Install
Install with npm:
$ npm install --save date-store
Usage
const DateStore = require('date-store');
API
Params
name {String}: If options.path is supplied, name will be ignored. Otherwise name is used as the filename for the JSON store: ~/.date-store/{name}.json
options {Object}: Optionally pass a dir and/or path to use for the JSON store. Default is ~/.date-store.json
Example
const store = new DateStore();
Params
key {string}
returns {object}: Returns the instance for chaining.
Example
store.set(key);
Params
key {String}: The name of the stored date to get.
returns {Date}: Returns the date object for key
Example
store.set('foo');
console.log(store.get('foo'));
console.log(store.get('foo') instanceof Date);
Params
key {String}: The name of the stored date to get.
returns {String}: Returns the stringified date for key
Example
store.set('foo');
console.log(store.getRaw('foo'));
console.log(store.getRaw('foo') instanceof Date);
console.log(store.get('foo') instanceof Date);
Params
key {String}: The name of the stored date to get.
returns {Number}
Example
store.set('foo');
console.log(store.getTime('foo'));
Params
key {String}
returns {Boolean}
Example
store.set('foo');
console.log(store.has('foo'));
Params
key {String|Array}: Property name or array of property names.
returns {Object}: Returns the instance for chaining.
Example
store.del('foo');
Params
str {String}: A human-readable string to pass to date.js
returns {Date}: JavaScript Date object
Example
console.log(store.date('1 day from now'));
Params
timespan {String}: A human-readable string to pass to date.js
returns {Date}: JavaScript Date object
Example
console.log(store.date('1 day from now'));
Params
key {String}: The stored date to compare
timespan {String}: A human-readable string to pass to date.js
returns {Number}: The difference in seconds between the two dates, or NaN if invalid.
Example
console.log(store.diff('foo', '10 minutes ago'));
Params
key {String}: The name of the stored date to set on .current
returns {Object}: Returns the instance for chaining.
Example
store.set('bar');
store.lastSaved('bar');
console.log(store.current);
console.log(store.lastSaved('bar').moreThan('31 minutes ago'));
console.log(store.lastSaved('bar').lessThan('31 minutes ago'));
Params
key {String}: The name of the stored date to set on .current
returns {Object}: Returns the instance for chaining.
Example
store.set('bar');
console.log(store.lastSaved('bar').moreThan('31 minutes ago'));
console.log(store.lastSaved('bar').lessThan('1 minutes ago'));
Params
key {String}: The name of the stored date to set on .current
returns {Object}: Returns the instance for chaining.
Example
store.set('bar');
console.log(store.lastSaved('bar').moreThan('31 minutes ago'));
console.log(store.lastSaved('bar').lessThan('1 minutes ago'));
Params
timespan {String}: A human-readable string to pass to date.js
returns {Array}: Returns an array of keys
Example
var keys = store.filterSince('1 week ago');
Reset store.dates to an empty object.
Example
store.clear();
Stringify the store. Takes the same arguments as JSON.stringify.
Example
console.log(store.json(null, 2));
Calls .writeFile() to persist the store to the file system, after an optional debounce period. This method should probably not be called directly as it's used internally by other methods.
Example
store.save();
Getter/setter for the store.dates object, which holds the values that are persisted to the file system.
Example
console.log(store.dates);
store.set('foo');
store.set('bar');
console.log(store.dates);
About
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Running Tests
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
$ npm install && npm test
Building docs
(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)
To generate the readme, run the following command:
$ npm install -g verbose/verb
Related projects
You might also be interested in these projects:
Author
Jon Schlinkert
License
Copyright © 2018, Jon Schlinkert.
Released under the MIT License.
This file was generated by verb-generate-readme, v0.6.0, on May 29, 2018.