One sentence summary: Taskflow collects no data, connects to no server, and everything stays on your computer. Full stop.
Taskflow is an application that runs entirely in your browser, on your own computer. There is no server behind it, no database somewhere in the cloud, no company receiving anything whatsoever.
Here is a clear table of what the application does β and does not do β with your information:
| Question | Answer |
|---|---|
| π‘ Does the app send my tasks over the internet? | No, never. |
| π Can someone see my tasks? | No, nobody. |
| πͺ Does the app use cookies? | No. |
| π Is there any analytics or tracking? | No. |
| π° Is my data sold? | No, impossible. |
| π Do I need to create an account? | No account required. |
| π§ Do I need to provide my email? | No, never. |
| π Do I need an internet connection? | No, it works offline. |
Your tasks are saved in what is called your browser's localStorage.
To put it simply: it's a small storage space that your browser makes available to websites and web apps, directly on your computer. It's exactly like a text file saved on your desktop, except it's managed automatically by the browser.
What this means in practice:
- β Your data never leaves your computer
- β Even Fabien ConΓ©jΓ©ro, the creator of Taskflow, cannot see your tasks
- β No internet connection is needed for the app to work
- β If you want to erase everything, simply clear your browser's localStorage (or delete the file)
The online version of Taskflow loads fonts (typefaces) from Google Fonts. This is only to make the text look nice.
This connection is the one and only network communication the app makes, and it transmits none of your tasks β just a font file request, like any website that displays styled text.
π‘ If you use the
taskflow-standalone.htmlversion offline, even this connection does not happen. The app works perfectly with your system's default fonts.
You don't have to take our word for it. Here's how to check for yourself that Taskflow sends nothing over the internet:
- Open Taskflow in your browser
- Press F12 (or right-click β "Inspect")
- Go to the "Network" tab
- Add tasks, check them off, delete some...
- Look at the network requests: you will see no personal data leaving anywhere
This is what we call transparency through code β the full source code is available on this GitHub repository, and anyone can read it and verify what it does.
Taskflow is an open source project. This means that all the code is visible to anyone, at any time, on this GitHub repository.
There is no hidden code, no secret part, no mysterious file running in the background. What you see in the files is exactly what the application does β nothing more, nothing less.
π‘ For developers: the entire codebase is available in the
src/folder. Thestore.jsfile handles all data β you can verify that no function makes any outgoing HTTP request.
If you want to cleanly erase everything, you have two options:
Option 1 β From the browser
- Press
F12to open the developer tools - Go to the "Application" tab (Chrome) or "Storage" tab (Firefox)
- Click on "localStorage"
- Find the entry
taskflow-v3and delete it
Option 2 β Clear the browser cache Go to your browser settings β Privacy β Clear browsing data β Site data. Note that this will also delete data from all other websites.
Found a security issue in Taskflow? Please do not expose it publicly in a GitHub Issue.
Contact the creator directly by opening an Issue labelled [SECURITY] with a general description of the problem, without sharing the technical details publicly. We will respond quickly to fix it.
Taskflow is a 100% local application that:
- Creates no user account
- Asks for no personal information
- Connects to no external server (except for loading fonts)
- Contains no advertising
- Sells no data
- Is entirely free and open source
It is as safe as a simple text file on your desktop.
Security document maintained by Fabien ConΓ©jΓ©ro β Open source project under MIT License Official repository: https://github.com/madjeek-web/Taskflow_to-do-list