1.0.4 • Published 6 years ago
text-event v1.0.4
text-event
How to use
Setup
Install:
npm install --save text-event
Run
const TextEvent = require('text-event');
const textevent = new TextEvent();
textevent.events(content); // default: parse English text
textevent.events(content, 'zh'); // parse Chinese text
Use with wikipedia
const TextEvent = require('text-event');
const textevent = new TextEvent();
const keyword = "Brett_Kavanaugh";
textevent.wiki(keyword, 'en').then((list) => {
console.log(list)
})
Deploy on AWS Lambda
An AWS Lambda version of this script can be found in lib/lambda.js
result format
[
{
"raw_dates": [ // string
"on December 7, 1941"
],
"dates": [ // Date
"1941-12-07T05:00:00.000Z"
],
"text": "The attacks killed about 500 more people than the attack on Pearl Harbor on December 7, 1941, and are the deadliest terrorist attacks in world history" // string
},
...
]