bkeepers / parse-reminder

a node module to parse natural language reminders into who, what, and when
ISC License
22 stars 7 forks source link

parse-reminder

a node module to parse natural language reminders into who, what, and when.

It aims to support all common forms of natural language for reminders. For example:

Usage

var parseReminder = require('parse-reminder')

console.log(parseReminder('remind me to call the doctor tomorrow'))
// Output:
// { who: 'me',
//   what: 'call the doctor',
//   when: 2017-09-12T12:00:00.000Z }