![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
chatlog-line-parser
Advanced tools
A chatlog parser that can take inputs from Discord, Slack and more!
A chatlog parser that can take inputs from Discord, Slack and more!
Currently supported services:
Discord
Slack
IRC
Telegram
Possibly other services which follow a general format.
Todo -
Please suggest some!
Chatlogs on applications, such as Discord, are difficult to export and share. This parser takes in such inputs and returns them as a message object.
A typical log would look this:
Kram10/12/2019
Why do you code???
LotusLast Sunday at 8:46 PM
Coding is fun
Sort of
KramYesterday at 8:46 PM
Youre always ranting about it...
LotusToday at 8:46 PM
Shhh I have my moments
Which should be parsed into message objects such as this:
[
{
username: "Kram",
timeStamp: "10/12/2019",
currentMessage: "Why do you code???"
},
{
username: "Lotus",
timeStamp: "Last Sunday at 8:46 PM",
currentMessage: "Coding is fun"
},
{
username: "Lotus",
timeStamp: "Last Sunday at 8:46 PM",
currentMessage: "Sort of"
},
{
username: "Kram",
timeStamp: "Yesterday at 8:46 PM",
currentMessage: "Youre always ranting about it..."
},
{
username: "Lotus",
timeStamp: "Today at 8:46 PM",
currentMessage: "Shhh I have my moments"
}
];
You can download this package from npm - https://www.npmjs.com/package/chatlog-line-parser
npm i chatlog-line-parser
Simply call the function with an input:
const chatlogLineParser = require("chatlog-line-parser");
let chatlog = chatlogLineParser.parse(
"LotusLast Sunday at 8:46 PM\n" +
"Coding is fun\n" +
"KramYesterday at 8:46 PM\n" +
"Youre always ranting about it..."
);
//Or you can feed the parser with an existing Array
let chatlog = chatlogLineParser.parse([
"LotusLast Sunday at 8:46 PM",
"Coding is fun",
"KramYesterday at 8:46 PM",
"Youre always ranting about it..."
]);
console.log(chatlog);
FAQs
A chatlog parser that can take inputs from Discord, Slack and more!
The npm package chatlog-line-parser receives a total of 1 weekly downloads. As such, chatlog-line-parser popularity was classified as not popular.
We found that chatlog-line-parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.