Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ios-gmail-notes

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ios-gmail-notes

node.js library that fetches iOS Notes synced through gmail, using IMAP

  • 0.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-25%
Maintainers
1
Weekly downloads
 
Created
Source

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: 'your-account@gmail.com',
   password: 'your-app-specific-password'
});

notes.list({
   success: function(list) {
   	console.log(list);
   },

   error: function(error) {
   	console.log("ERROR: " + error);
   }
});

Why is this useful?

If you're on a Windows / Linux machine, with no way to easily access your iOS Notes, it's very simple to use this library to fetch all the notes and dump them into separate txt files.

When this library will also support write access, it can be used as a Dropbox-like sync tool for your notes.

Dependencies

  • imap package (repository)

Author

Andrei Gheorghe

License

  • This code is licensed under the MIT License.

FAQs

Package last updated on 14 Mar 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc