- Analyze your WhatsApp Chat in Seconds
- Reveal insights & get statistics, while all data stays on your device.
- No chat data is sent to a server it runs only locally in your browser.
This is an open-source tool to analyze your WhatsApp Chat and create pdfs from your chat. You can run the code locally on your device or visit whatsanalyze.com to see the hosted "main" branch. The website is hosted on github pages and all code is visible.
No data about your chat is transferred to any server at all.
Dev deployment: https://whatsanalyze-80665.web.app
Please report bugs in the github issues.
We use node 16, with 18 we had issues with our linter. The project also needs python to be installed, but the version needs to be 3.11
or lower.
# install dependencies
$ pnpm install
# serve with hot reload at localhost:3000
$ pnpm dev
# build for production and launch server
$ pnpm build
$ pnpm start
# generate static project
$ pnpm generate
Search for prettier and eslint in pycharm to set it up on saving a file. You can also add .vue there for running stuff on Vue files as well.
For detailed explanation on how things work, check out Nuxt.js docs.
https://letsencrypt.org/docs/certificates-for-localhost/
openssl req -x509 -out 0.0.0.0.crt -keyout 0.0.0.0.key -newkey rsa:2048 -nodes -sha256 -subj '/CN=localhost' -extensions EXT -config <( printf "[dn]\nCN=localhost\n[req]\ndistinguished_name = dn\n[EXT]\nsubjectAltName=DNS:localhost\nkeyUsage=digitalSignature\nextendedKeyUsage=serverAuth")
Also need to install the .crt file and trust it in your system settings
Code to generate certificate installable on android:
openssl pkcs12 -export -in 0.0.0.0.crt -inkey 0.0.0.0.key -out 0.0.0.0.p12