Accompanying code for my articles about moving data from Nirvana GTD to Zenkit.
- a recent version of Node.js and NPM
- a Nirvana GTD account
- a Zenkit account
- Install dependencies:
npm install
-
download a JSON export of your data from Nirvana GTD (see Part 1 of the series) and save it locally, e.g.
C:\download\nirvana-export.json
-
CD into project, then run the script:
node src/index.js C:\download\nirvana-export.json
Sample console output (Windows):
> node src/index.js C:\download\nirvana-export.json
Writing out/projects.csv...
Writing out/tasks.csv...
...Done
...Done
The script will create:
- an
out
folder out/projects.csv
out/tasks.csv
See articles in the series for details.