ios-gmail-notes
v0.0.3
Published
node.js library that fetches iOS Notes synced through gmail, using IMAP
Downloads
7
Readme
iOS Notes over GMail
This library offers read access to iOS Notes (the official Apple Notes application) if the notes were configured to be synced with Google through IMAP (see here how to do this).
It is recommended to use an application-specific password when connecting to the GMail IMAP server.
Installation
npm install ios-gmail-notes
Usage
var notes = require("ios-gmail-notes").bind({
user: '[email protected]',
password: 'your-app-specific-password'
});
notes.list({
success: function(list) {
console.log(list);
},
error: function(error) {
console.log("ERROR: " + error);
}
});
Dependencies
- imap package (repository)
Author
Andrei Gheorghe
- About me
- LinkedIn: linkedin.com/in/idevelop
- Twitter: @idevelop
License
- This code is licensed under the MIT License.