text-event

1.0.4 • Public • Published

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
  },
  ...
]

/text-event/

    Package Sidebar

    Install

    npm i text-event

    Weekly Downloads

    0

    Version

    1.0.4

    License

    MIT

    Unpacked Size

    6.55 kB

    Total Files

    6

    Last publish

    Collaborators

    • josherich