chalvorson / apps-script-starter

The modern software development environment for building Google add-ons and web applications with Google Apps Script and next-generation JavaScript. Uses Babel, Webpack, Google Clasp, Prettier and ESLint inside Visual Studio Code for an efficient workflow.

Home Page:https://digitalinspiration.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Google Apps Script Development with ES6

Google Apps Script πŸ’―

Use the Apps Script Starter kit to quickly build Google add-ons and web applications with next-generation JavaScript.

The starter kit is used by Digital Inspiration for building Google add-ons include Gmail Mail Merge, Google Forms Notifications and Document Studio.

For help, please contact Amit Agarwal amit@labnol.org

Developing with Apps Script πŸš€

The Apps Script Starter kit makes it easy for you to quickly setup a modern development environment and build workflow. Here's everything that's included in the starter kit to get you started:

Babel

Write code using ES6 features like arrow functions, destructuring, classes, template literals, and the Babel transpiler will transform your ECMAScript 2015/2017 code to ES5 that Apps Script can understand.

ESLint

A popular linting engine that analyzes your JavaScript code for correctness and highlights the errors in real time before you even compile the code, thus reducing the development time.

Webpack

Webpack is a powerful tool for bundling JavaScript modules. Developers can structure code in directory and Webpack creates a minimized and optimized bundle for pushing to production.

Google CLASP

A command line utility for working with Google Apps Script projects. You can develop code locally and push it to production, manage your manifest file, deploy web apps and publish new versions of apps.

Visual Studio Code

This incredibly powerful source code editor from Microsoft provides an integrated development environment and has built-in support for Emmet, Intellisense for code autocompletion, Command Line Terminal, Git integration, Node.js , TypeScript and more.

Prettier

A code formatter that will beautify your JavaScript, JSON, HTML and CSS stylesheets according to a set of rules and styles widely accepted by programmers.

AirBnB

Developers have their own unique style of writing code. AirBnB's JavaScript style guide outlines how JavaScript code should be written and adheres to the rules.

Getting Started πŸƒπŸΌ

Google Apps Script - Setup Development Environment

Setting up a modern development environment for building Google Apps Script projects is easy and quick. You also need to install Node.js which includes the npm package manager.

1. Clone the repository, remove the git history and install npm dependencies

git clone https://github.com/labnol/apps-script-starter my-project
cd my-project
rm -rf .git
git init
npm install

2. Log in to Google clasp and authorize with your Google account.

npx clasp login

3. Create a new Google Script bound to a Google Sheet (or set the type as standalone to create a standalone script in your Google Drive)

npx clasp create --type sheets --title "My Apps Script Project" --rootDir ./dist

4. Include the necessary OAuth Scopes in the appsscript.json file

5. Deploy the project

npm run deploy

The dist directory contains the bundled code that is pushed to Google Apps Script.

About the Developer πŸ‘¨πŸΌβ€πŸ’»

Amit Agarwal is a web geek and author of labnol.org, a popular tech how-to website. He frequently uses Google Apps Script to automate workflows and enhance productivity.

Reach him on Twitter or email amit@labnol.org

Contributions πŸ™πŸΌ

Contributions and feature requests are welcome. If you are using the Google Apps Script starter package and fixed a bug for yourself, please consider submitting a PR!

License πŸ“„

MIT License (c) Amit Agarwal

clasp

About

The modern software development environment for building Google add-ons and web applications with Google Apps Script and next-generation JavaScript. Uses Babel, Webpack, Google Clasp, Prettier and ESLint inside Visual Studio Code for an efficient workflow.

https://digitalinspiration.com/

License:MIT License


Languages

Language:JavaScript 83.2%Language:HTML 16.8%