tjrgg / chat-log-parser

A simple, easy-to-use chat log parser with javascript.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ChatLogParser

A simple, easy-to-use chat log parser with javascript.

Installation

To install, run npm i chatlogparser.

Usage

Reading from a chat log file.

const chat = require('./parser');
const fs = require('fs');

fs.readFile(`./log.txt`, 'utf8', (err, data) => {
  console.log(chat.parse(data))
})

About

A simple, easy-to-use chat log parser with javascript.


Languages

Language:JavaScript 100.0%