Skip to content
This repository has been archived by the owner on Feb 11, 2023. It is now read-only.

A TypeScript-based Gmail add-on Boilerplate

License

Notifications You must be signed in to change notification settings

dhayab/gmail-addon-boilerplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gmail Add-on Boilerplate

This repository holds the code of a starting point for creating Gmail add-ons, on the Google Apps Script platform.

Installation

$ git clone https://github.com/dhayab/gmail-addon-boilerplate.git my-gmail-addon
$ cd my-gmail-addon
$ rm -rf .git
$ npm install

Don't forget to change the package name and other values in package.json.

Development

The starting point is the src/ directory. It contains TypeScript source files for the add-on, and a manifest file called appsscript.json.

There are a few subtleties to keep in mind when writing code for use in Google Apps Script.

  1. Export callback functions: Functions that will be called by Google Apps Script should be exported in your source code, to prevent the TypeScript compiler from failing on build. The bundle step will remove the export { /* ... */ } statement.
  2. Do not reuse function names: After the build phase, all files are bundled into a single addon.js file. So don't export functions that have the same name in different files.

To build the project, just type this in your terminal:

$ npm run build

You can also watch for errors during the development by typing npm run watch.

Deployment

This project uses the google-apps-script CLI (also named gas) to allow files to be synced to an existing project or to create a new Google Apps Script project. The complete documentation can be found here.

1. Authentication

First of all, you need to authenticate yourself to gas by typing the following:

$ npm run gas -- auth

Then, follow the instructions on screen.

2. Project association

You must associate your code with a Google Apps Script project. In order to do that, you can either create a new project or retrieve a list of your existing projects. Then you'll need to create the link between your code and the project.

# Create a new project
$ npm run gas -- create my-gmail-addon
...
Creating 'my-gmail-addon' in your Google Drive... [✔]
[PROJECT_HASH] my-gmail-addon

# Or list your existing projects
$ npm run gas -- list
...
[PROJECT_HASH] Foo
[PROJECT_HASH] my-gmail-addon
[PROJECT_HASH] Random Project

# Link to your code (you can also specify the hash instead of the project name)
$ npm run gas -- link my-gmail-addon
...
Linking 'my-gmail-addon' to this folder... [✔]

3. Pushing code changes

When you're ready to send your code to Google Apps Script, just type this command in your terminal:

$ npm run upload

You code is now available in the associated Google Apps Script project!

Add-on execution

To view your Gmail add-on in action, you have to install it in the Gmail settings.

First of all, retrieve the Deployment ID of your project. Go to your script, either manually by opening it from Google Drive, or from the terminal, with this command:

$ npm run gas -- open

Then go to Publish > Deploy from manifest… and click on Get ID.

Now, open your Gmail settings (click here) and enable the Developer mode by clicking on the checkbox, and paste the Deployment ID in the text input that has appeared.

Links