todoist-export
todoist-export copied to clipboard
Backup tool for Todoist
Export for Todoist
A Node.js application to backup Todoist data as JSON or CSV.

✨ Live demo ✨
Development
Quick Start
-
Create a Todoist App. On localhost use
http://localhost:3000/todoist-export/for both "App Service URL" and "OAuth Redirect URL". -
Copy
src/config.js.exampletosrc/config.jsand fill in the id and secret from the created app. -
Install required packages (you can use
npminstead ofyarn):
yarn install
- Start server:
yarn start
Refer to the API for more information.
Configure SSL
Todoist redirects to a HTTPS version of your OAuth Redirect URL, even if a HTTP URL is defined. To retrieve your Todoist backup, you can change the URL from HTTPS to HTTP in the browser address bar after authorization. You can also start the app as HTTPS server, after creating a self-signed SSL certificate and defining your certificate data in config.js:
ssl: {
cert: fs.readFileSync('./ssl/fullchain.pem'),
key: fs.readFileSync('./ssl/privkey.pem'),
passphrase: 'ssl certificate passphrase'
}
License
Copyright 2014-2021 Darek Kay [email protected]
This project and its contents are open source under the MIT license.