node-google-apps-script icon indicating copy to clipboard operation
node-google-apps-script copied to clipboard

[DEPRECATED - use clasp instead] The easiest way to develop Google Apps Script projects

Results 19 node-google-apps-script issues
Sort by recently updated
recently updated
newest added

I got a syntax error from the command `gapps init 123...xyz` (with "123...xyz" substituted by my real project ID). Here's the error: ``` [jack@mycomputer myproject]$ gapps init 123...xyz Error parsing...

bug
pr welcome

Is there a way to use gapps as a JS-library instead of using the CLI? Thank you!

enhancement
pr welcome

First, Apps Script appears to not allow two files differing only in `.gs` and .`html` extensions. The Apps Script UI itself handles this really poorly: if you attempt to create...

enhancement
investigate

> gapps allows you to nest files in folders, but the Apps Script platform expects a flat file structure. Because of this, no files can have the same name, even...

enhancement
question
pr welcome

In node, the following js does not result in any errors: ```js obj = {}; obj.const = {}; ``` ```js obj = {}; obj.function = {}; ``` However, in App...

enhancement
pr welcome

This PR adds the ability to handle folders properly when uploading files to Google Apps Script, without resorting to flattening the file tree. Files on Google Apps Script seem to...

(Note: I believe that what I'm looking for here is not at all the same thing as #19, in particular because I'm looking for functionality that is not the same...

needs review

Allows one to use a Service Account as Auth method (instead of OAuth). Just store it base64-encoded in the env var `GOOGLE_APPS_PRIVATE_KEY`.

This can only be run after an "init"; it downloads the current code from Google. Typically you'd want to use this to check that the code you're working with is...