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

yammer

Package Overview
Dependencies
Maintainers
2
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yammer - npm Package Compare versions

Comparing version 0.0.2 to 0.1.0

.npmignore

35

package.json
{
"name": "yammer",
"description": "Simple Yammer API client using OAuth 2",
"version": "0.0.2",
"author": "Simon Murtha-Smith <simon@murtha-smith.com>",
"keywords": ["yammer"],
"main" : "lib/yammer_client.js",
"directories" : { "lib" : "./lib" },
"dependencies": { "request": ">=2.1.1" },
"repository" : {"type": "git" , "url": "http://github.com/smurthas/yammer-js.git" },
"engines": { "node": ">=0.2.0 <0.7.0" }
"name": "yammer",
"description": "Client library for the yammer api",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/polotek/node-yammer.git"
},
"author": "Mikeal Rogers <mikeal.rogers@gmail.com>",
"maintainer": "polotek (Marco Rogers)",
"main": "main.js",
"scripts": {
"test": "node tests.js"
},
"engines": {
"node": "*"
},
"dependencies": {
"request": "~2.34",
"otools": "*"
},
"devDependencies": {
"tape": "1.x",
"mock": "0.1.x",
"sinon": "~1.9"
}
}

@@ -1,19 +0,13 @@

# yammer-js
# Client library for the yammer api.
Simple Yammer API client for express + connect.
```
var Yammer = new require('node-yammer').Yammer;
npm install yammer
// oauth2 access token
var yam = new Yammer({ access_token: token });
yam.messages(function(res, body) {
console.log(body.messages);
});
```
## Usage
yammer has only one method:
* apiCall(_http_method_, _path_, _params_, _callback_): Does a call to the Yammer API.
Params must contain the token (in the access_token field).
## Test
```
node example/test.js <access_token>
```
Docs coming soon. But the method names in the source are pretty straight forward.
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