This is a Next.js project bootstrapped with create-next-app
.
It uses a drag and drop component derived from innocentanyaele's Medium post.
yarn install
or your preferred equivalent to install dependencies.yarn dev
to run the development server.- Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx
. The page auto-updates as you edit the file.
This project uses next/font
to automatically optimize and load Inter, a custom Google Font.
The parseMessages
function is a hand-rolled, awful parser for the awful plain text chat output that Zoom gives you.
Everything is done client side, no data leaves your browser, there is no server.
Parsing is all handled on the main thread, this seems fine on a desktop machine with files up to about 100KB so far.
There are no unit tests. The parser has been tested on a handful of files from late 2023.
Deploys are handled by Vercel automatically from main
.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
This is not a unique idea!
See also:
- Flutter: https://github.com/Zehua-Chen/zoom-chat-viewer
- Javascript/Svelte: https://github.com/0xcharchar/zoom-chat-viewer