
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
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!
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
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.