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

mendeleyjs

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mendeleyjs

A small module to mediate connections to the new mendeleyJS API

  • 0.0.2
  • unpublished
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

MendeleyJS

a small node module to mediate requests and client credentials auth to the mendeley api Javascript + Mendeley Public API

note : im still writing this

A wrapper for the mendeley api's public methods, compliant with the new oauth 2.0 implementation.

###Supported Methods

auth("clientid", "client secret", resultHandler)
search("searchterm", resultHandler)

###Inclusion

npm install mendeleyjs
var Mendeley = require('mendeleyjs');

###Usage

create an instance of the library

Mendeley.auth('clientID', 'client secret', function(msg) {
    console.log(msg)
    Mendeley.search("science", function(data) {
        console.log(data);
    });
});

###About

Mendeley is a site that provides tools to manage references and citations to academic research papers. They also provide a search facility for their paper collection. This wrapper is being developed to link Mendeley into the search feature of Seeder

I will be adding more methods to the api soon.

Keywords

FAQs

Package last updated on 04 Sep 2014

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