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
- Host: GitHub
- URL: https://github.com/solean/ibooks-highlights
- Owner: solean
- License: mit
- Created: 2019-09-08T02:09:35.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-24T03:40:03.000Z (over 1 year ago)
- Last Synced: 2025-10-24T05:18:48.856Z (8 months ago)
- Topics: annotations, ebooks, highlights, ibooks
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/ibooks-highlights
- Size: 292 KB
- Stars: 10
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
```