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

google-worksheet-stream

v1.1.4

Published

A streaming interface for Google Spreadsheets

Downloads

15

Readme

google-worksheet-stream

Build Status

A streaming interface for Google Spreadsheets that allows you to batch write and read worksheet cells.

Installation

npm install google-worksheet-stream

API

let worksheet = new Worksheet({token, spreadsheetId, worksheetId})

Returns a worksheet object with a property for each of the three levels of abstraction: cells, rows, and objects.

This constructor takes three arguments:

  • token (required): A token instance from google-oauth-jwt-stream.
  • spreadsheetId (required): The 44-character ID of the spreadsheet, as found in its URL.
  • worksheetId (options): The ID of the worksheet within the spreadsheet, defaulting to od6.

Cells

let rs = worksheet.cells.createReadStream(options)

Returns a readable object stream of the cells in the worksheet. Each cell emitted has two properties:

  • key: a [row, column] array of numbers identifying the cell
  • value: a string or number representing the cell value

The options object is not required, and can take the following properties, as documented in the fetch API:

  • minRow: the minimum row returned, inclusive
  • maxRow: the maximum row returned, inclusive
  • minCol: the minimum column returned, inclusive
  • maxCol: the maximum column returned, inclusive

let ws = worksheet.cells.createWriteStream()

Returns a writable object stream of the cells in the worksheet, with the same spec as the readable stream above.

Rows

let rs = worksheet.rows.createReadStream(options)

Returns a readable object stream of the rows in the worksheet. This is an abstraction on top of the cells interface in which cells are grouped by row. Each row emitted has two properties:

  • key: a number identifying the row
  • value: an object with column numbers as keys and cells as values.

The options object is not required, and can take the following properties:

  • minRow: corresponds to minRow in the cell API
  • maxRow: corresponds to maxRow in the cell API

let ws = worksheet.rows.createWriteStream()

Returns a writable object stream of the rows in the worksheet, with the same spec as the readable stream above. This stream will also accept arrays as values, in which case keys will be incremented by one, so that the following rows are identical:

  • {key: 2, value: {1: "Jed Schmidt", 2: "@jedschmidt"}}
  • {key: 2, value: ["Jed Schmidt", "@jedschmidt"]}

Objects

let rs = worksheet.objects.createReadStream(options)

Returns a readable object stream of the objects in the worksheet. This is an abstraction on top of the rows interface, in which column numbers are replaced with attribute names obtained from the first row (the "header" row). Each row emitted has two properties:

  • key: a number identifying the row
  • value: an object with column names as keys and cells as values.

The options object is not required, and can take the following properties:

  • minRow: corresponds to minRow in the cell API, but starting at 2, since row 1 is used as the header row.
  • maxRow: corresponds to maxRow in the cell API

let ws = worksheet.objects.createWriteStream()

Returns a writable object stream of the objects in the worksheet, with the same spec as the readable stream above.