New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

instapaper-node-sdk

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

instapaper-node-sdk

Node.js wrapper for Instapaper API

latest
Source
npmnpm
Version
2.0.1
Version published
Weekly downloads
16
-40.74%
Maintainers
1
Weekly downloads
 
Created
Source

Node.js wrapper for Instapaper API

Installation

$ npm i instapaper-node-sdk

Usage


const Instapaper = require('instapaper-node-sdk')
const client = new Instapaper(KEY, SECRET)
client.setCredentials(USERNAME, PASSWORD)

// get the list of your bookmarks
client.list({ limit: 100 }).then((data) => console.log(data)).catch((err) => console.log(err))

APIs Instapaper API document

Utils

  • verifyCredentials()

Bookmarks

  • list(params)
  • updateReadProgress(params)
  • add(params)
  • delete(bookmarkId)
  • star(bookmarkId)
  • unstar(bookmarkId)
  • archive(bookmarkId)
  • unArchive(bookmarkId)
  • move(bookmarkId, folderId)
  • getText(bookmarkId)

Folders

  • listFolders(params)
  • addFolder(title)
  • deleteFolder(folderId)

Hightlights

  • listHighlights(bookmarkId)
  • addHighlight(bookmarkId, params)
  • deleteHighlight(highlightId)

Terms of use

Please read the Instapaper API Terms of Use before using this API client.

AUTHOR

BryantChan <bryantandk@gmail.com>

FAQs

Package last updated on 13 Mar 2021

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