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.1.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

node-sheetsu Downloads

Node JS module for using Sheetsu

What's new (v1.1.0)

  • Supports Promises now. Use the get , getAll and add methods to use yield-ables.

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

getAllData (callback)

  • callback : function to be executed after the method

getData (params, callback)

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

addRow (params, callback)

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

getAll ()

get (params)

  • params : Should include the field column_name to get data of the particular column

add (params)

  • params : Should include the row of information to add to the spreadsheet

Keywords

FAQs

Package last updated on 19 Dec 2015

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