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

sheetsu

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

sheetsu

Node JS client for Sheetsu

  • 1.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

node-sheetsu Build Status Downloads

Node JS module for using Sheetsu

What's new (v1.2.0)

  • Supports Promises & callbacks . Use the get , getAll and add methods to use both Promises and callbacks.

Getting Started

  • Install the module npm install sheetsu
  • Example usage :
var Sheetsu = require('sheetsu');
var co = require('co');
var test_url = 'YOUR_SHEETSU_API';

var dev = new Sheetsu(test_url);

dev.addRow({...}, function(response) {
    console.log(response);
});

co(function* () {
    let result = yield dev.getAll();
    console.log(result);
})

Methods

getAll ([callback])

  • callback (optional) : function to be executed after the method

get (params, [callback])

  • params : Should include the field column_name to get data of the particular column
  • callback (optional) : function to be executed after the method

add (params, [callback])

  • params : Should include the row of information to add to the spreadsheet
  • callback (optional) : function to be executed after the method

Keywords

FAQs

Package last updated on 29 Apr 2016

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