Does Google Apps Script support external IDEs?

前端 未结 7 2046
猫巷女王i
猫巷女王i 2020-12-02 18:35

I am using Google Apps Script and was wondering if I could use any sort of editor outside of the one Google provides. (I purchased Sublime Text and would like to use that.)<

相关标签:
7条回答
  • 2020-12-02 19:14
    1. The eclipse plug-in is migrated now. You should install many files. lastly it couldn't import my google script files.
    2. nod-google-apps-script is depercated.
    3. gdrive can't handle google scripts beyond exporting the project in single json file. issue issue
    4. sublime-editor-plug-in has n't worked for me (I read the whole documents & issues)

    The only working solution for me (ubuntu xenial) is clasp.

    According to doc it can :

    Develop Locally: clasp allows you to develop your Apps Script projects locally. That means you can check-in your code into source control, collaborate with other developers, and use your favorite tools to develop Apps Script.

    Manage Deployment Versions: Create, update, and view your multiple deployments of your project.

    Structure Code: clasp automatically converts your flat project on script.google.com into folders. For example:

    On script.google.com: tests/slides.gs tests/sheets.gs

    locally: tests/ slides.js sheets.js

    N.B:. The fature of 'Manage Deployment Versions' isn't supported by eclipse plug in.

    It give the following commands:

    clasp login [--no-localhost]
    clasp logout
    clasp create [scriptTitle] [scriptParentId]
    clasp clone <scriptId>
    clasp pull
    clasp push
    clasp open
    clasp deployments
    clasp deploy [version] [description]
    clasp redeploy <deploymentId> <version> <description>
    clasp version [description]
    clasp versions
    

    By using it; you can use your favorite script editor; then push the changes.

    Edit GAS Editor Autocomplete

    Thanks to @tehhowch comment.

    Auto complete of google objects is almost exclusive for online GAS editor, If you use any external editor , you will only get auto complete for the functions & variables of your own script (I am not sure about eclipse).

    But online editor provides autocomplete which reveals the global objects as well as methods and enums that are valid in the script's current context.

    To show autocomplete suggestions, select the menu item Edit > Content assist or press Ctrl+Space. Autocomplete suggestions also appear automatically whenever you type a period after a global object, enum, or method call that returns an Apps Script class. For example:

    • If you click on a blank line in the script editor and activate autocomplete, you will see a list of the global objects.
    • If you type the full name of a global object or select one from autocomplete, then type . (a period), you will see all methods and enums for that class.
    • If you type a few characters and activate autocomplete, you will see all valid suggestions that begin with those characters.
    0 讨论(0)
  • 2020-12-02 19:26

    As of today (May 2018), every scripts that you add on Google App Scripts (including scripts on Google Drive like spreadsheets) will get accessible through https://script.google.com and will have a specific id that you can get through the url by opening it.

    By using clasp which handle a project (like git), you can do:

    clasp clone {id}
    

    to have your script in a local folder. Then, after editing your file with your favorite text editor, upload it back with :

    clasp push
    
    0 讨论(0)
  • 2020-12-02 19:26

    This is an answer for basic/beginner users of Intellij that are looking for code completion when writing Google App Scripts apps. Most of the answers above were helpful for getting me going, especially with Clasp. But none of them actually got Intellij to do the code complete. But this does:

    Select File, Settings, Languages & Frameworks, JavaScript, Libraries.

    Then on the right select Download, the scroll down to 'google-app-scripts'. (Lots of scrolling) Download and install and you're done. Almost so easy that it really shouldn't have been so hard to find.

    0 讨论(0)
  • 2020-12-02 19:29

    You can just install a Google Drive command line client (e.g. https://github.com/prasmussen/gdrive) and edit .gs scripts directly.

    There's also a way to edit Google Apps Scripts in Eclipse, which may be interesting. https://developers.google.com/eclipse/docs/apps_script

    0 讨论(0)
  • 2020-12-02 19:32

    You can use node-google-apps-script to edit scripts locally (described in this blog post from the google apps developer blog on 2015-12-17). This way you can use a more comfortable editor, version control and build scripts.

    Caveats:

    • Like the eclipse plugin, node-google-apps-script requires that your add-on is a standalone script.
    • Debugging still requires google's script editor. With some additional setup you could run functions via the Execution API
    • It would be awesome if there was a Sublime Text plugin for code completion of google library methods, but I haven't found one (I don't think their default browser editor even offers this, though)
    0 讨论(0)
  • 2020-12-02 19:34

    Google has dropped support for Apps Script inside Eclipse but you can set up a local development environment inside VS Code using the Apps Script Starter kit and CLASP.

    Here's a video tutorial to help you get started.

    0 讨论(0)
提交回复
热议问题