npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@notainc/google-spreadsheet-as-promised

v0.3.0

Published

Basic Google Spreadsheet functionality - load a spreadsheet, switch workbooks, read and write cells, wrapped in Promise interface and with human readable cell designation.

Downloads

3

Readme

This is forked project. Original is https://github.com/ranhalprin/node-google-spreadsheet-as-promised

Basic Google Spreadsheet Access with Promises and Simple Cell Notation (node.js)

This node.js module allows connecting to a Google Spreadsheet, changing cell values and reading cell values. It is useful in the context where a spreadsheet has complicated logic that you do not want to move into code, or if you want to validate that your code behaves the same as the spreadsheet for different inputs.

Installation

npm install @notainc/google-spreadsheet-as-promised

Usage

The following usage example covers most provided functionality. It shows how to change some parameter cells in the spreadsheet and then read values from other cells.

var GoogleSpreadsheetAsPromised = require('google-spreadsheet-as-promised');

var CREDS = require('./google-api-creds.json');

var SPREADSHEET_KEY = '<spreadsheet key>';

var WORKSHEET_ID = 0;
var PARAMETER_RANGE = 'B2:C8'; // Matrix range covers all cells where parameters should be changed
var PARAMETER_CELLS = {
    parameter1: 'B2',
    parameter2: 'B4',
    parameter3: 'C7',
    parameter4: 'C8'
};
var TOTAL_CELL = 'D20';
var INTERMEDIATE_CALCULATIONS_RANGE = 'D10:D14';

var parameters = {
    parameter1: '100',
    parameter2: '0.5',
    parameter3: '17',
    parameter4: '55'
};

getResultWithParameter(parameters).then(function(result) {
    console.log(result);
});

// Given parameters, resolves to the result cell after
function getResultWithParameter(parameters) {
    return new Promise(function(resolve, reject) {
        var sheet = new GoogleSpreadsheetAsPromised();
        var worksheet;
        var result = {};
        sheet.load(SPREADSHEET_KEY, CREDS).then(function() {
            return sheet.getWorksheet(WORKSHEET_ID);
        }).then(function(resultWorksheet) {
            worksheet = resultWorksheet;
            return worksheet.getCells(PARAMETER_RANGE); 
        }).then(function(cells) {
            var promises = [];
            var names = Object.keys(parameters);
            for (var i = 0; i < names.length; i++) {
                var name = names[i];
                var value = parameters[name];
                var cell = PARAMETER_CELLS[name];
                if (!cell) {
                    return reject("Unknown Parameter: " + name);
                }
                promises.push(cells.setValue(cell, value));
            }
            return Promise.all(promises); // This makes all values change in parallel 
        }).then(function() {
            return worksheet.getCell(TOTAL_CELL); // We must load the result cell only after parameter values are all set
        }).then(function(cell) {
            result.total = cell.getValue();
            return worksheet.getCells(INTERMEDIATE_CALCULATIONS_RANGE);
        }).then(function(cells) {
            result.intermediate_values_array = cells.getAllValues();
            return resolve(result);
        });
    });
};

new GoogleSpreadsheetAsPromised()

Create a new google spreadsheet object.

'GoogleSpreadsheetAsPromised.load(sheet_id, creds)'

Load must be called before any other functionality is available. Resolves to undefined.

  • sheet_id -- the ID of the spreadsheet (from its URL)
  • creds -- the credential needed to access the spreadsheet (see the "Authentication" section)

'GoogleSpreadsheetAsPromised.getWorksheet(worksheet_id)'

Resolves to a WorksheetAsPromised object that represents one of the worksheets (tabs) in the spreadsheet.

  • worksheet_id -- the numeric ID of the worksheet you want to work with, usually 0 for the default tab.

'GoogleSpreadsheetAsPromised.getWorksheetByName(worksheet_title)'

Resolves to a WorksheetAsPromised object that represents one of the worksheets (tabs) in the spreadsheet.

  • `worksheet_title' -- the string title of the worksheet you want to work with. If titles are not unique, use getWorksheet(id) instead.

WorksheetAsPromised

This class represnts a worksheet (tab)

'WorksheetAsPromised.getCells(range)'

Resolves to a CellsAsPromised object that represents a groups of cells.

-- range -- a string representation of the cell range to load in the form '<min-col><min-row>:<max-col><max-row>' for example 'A1:B4' will load the eight cells 'A1','A2','A3','A4','B1','B2','B3','B4'

'WorksheetAsPromised.getCell(cell)'

Resolves to a CellAsPromised object that represents a single cells.

-- cell -- a string representation of the cell in the form '<col><row>', for example 'B2'


'CellsAsPromised.getValue(cell)'

Return the value in a given cell.

-- cell -- a string representation of the cell in the form '<col><row>', for example 'B2'

'CellsAsPromised.getAllValues()'

Return all the values loaded in a single array built from the data horizontally first and then vertically. For example, if loaded the range 'A1:B2' it will return the values in the order 'A1','A2','B1','B2'.

'CellsAsPromised.getWidth()'

Returns the width (number of columns) of the cell group loaded.

'CellsAsPromised.getHeight()'

Returns the height (number of rows) of the cell group loaded.

'CellsAsPromised.setValue(cell, value)'

Sets a value to a cell in the spreadsheet. Resolves to undefined.

-- cell -- a string representation of the cell in the form '<col><row>', for example 'B2' -- value -- a string value to write into the cell


'CellAsPromised.getValue()'

Returns the value in the cell.

'CellAsPromised.setValue(value)'

Sets a value to the cell. Resolves to undefined.

-- value -- a string value to write into the cell


Authentication

The recommended authentication method is to give a google api service access to the spreadsheet. There is no need to create a new user for the module to use it.

(More about Service Authentication)

Setup Instructions

  1. Go to the Google Developers Console
  2. Select your project or create a new one (and then select it)
  3. Enable the Drive API for your project
  • In the sidebar on the left, expand APIs & auth > APIs
  • Search for "drive"
  • Click on "Drive API"
  • click the blue "Enable API" button
  1. Create a service account for your project
  • In the sidebar on the left, expand APIs & auth > Credentials
  • Click blue "Add credentials" button
  • Select the "Service account" option
  • Select the "JSON" key type option
  • Click blue "Create" button
  • your JSON key file is generated and downloaded to your machine (it is the only copy!)
  • note your service account's email address (also available in the JSON key file)
  1. Share the doc (or docs) with your service account using the email noted above

If you are using heroku or another environment where you cannot save a local file, the recommended method is to save the two required fields into enviornment variables:

  • client_email -- your service account's email address
  • private_key -- the private key found in the JSON file

And then load them in runtime like so:

creds.private_key = process.env.GOOGLE_API_KEY.replace(/\\n/g,"\n"); // Newlines are escaped in env variables
creds.client_email = process.env.GOOGLE_API_EMAIL;

Acknowledgement

This module wraps the google-spreadsheet nodejs module. It provides two changes in API:

  • Instead of callbacks, it uses Promise for easier flow control
  • Instead of supplying the cell ranges as numbered parameters, they are supplied as strings in standard spreadsheet notation

NOTE: The wrapper is very limited and supports only a limited set of functionality the exists in the original module.

Contributions

If you need more features or find bugs, please contribute your improvements through pull requests in our github. Please also update usage.js with an example for the new functionality example.

Updates to underlying module

In order to maintain compatability this wrapper is locked to a specific version of the google-spreadsheet module.

Future features

Support bulk setting of multiple cells in one API call to reduce network overhead and response time.

Links

License

google-spreadsheets-as-promised is free and unencumbered public domain software. For more information, see the accompanying UNLICENSE file.