An open API service indexing awesome lists of open source software.

https://github.com/solean/ibooks-highlights

Extract iBooks highlights
https://github.com/solean/ibooks-highlights

annotations ebooks highlights ibooks

Last synced: 5 months ago
JSON representation

Extract iBooks highlights

Awesome Lists containing this project

README

          

# ibooks-highlights

If you have iBooks highlights/annotations on your Mac (which should also be synced with your other iCloud devices),
you can use this module to extract them from the obscure sqlite database that they are stored in.

Example of extracting the highlights in JSON and spitting them to the console:

`$ npm install ibooks-highlights`

```
const ibooks = require('ibooks-highlights');
ibooks.getAnnotations().then(console.log);
```