Package Exports
- @google/clasp
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@google/clasp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
clasp
Develop Apps Script projects locally using clasp (Command Line Apps Script Projects).
Install
First download clasp:
npm i @google/clasp -gThen enable Apps Script API: https://script.google.com/home/usersettings
Features
πΊοΈ 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.gstests/sheets.gs
- locally:
tests/slides.jssheets.js
Commands
clasp -hclasp loginclasp logoutclasp create [scriptTitle]clasp clone <scriptId>clasp pullclasp pushclasp openclasp deploymentsclasp deploy [version] [description]clasp redeploy <deploymentId> <description>clasp version [description]clasp versions
How To...
Login/Logout
clasp login
clasp logoutCreate a New Apps Script Project
Files in the current directory are added to the project.
clasp create [scriptTitle]Clone an existing project in the current directory
clasp clone <scriptId>Push/Pull
clasp push # Updates Apps Script project with local files
clasp pull # Updates local files with Apps Script projectUpdate a Published Project / Deploy
To deploy a project:
- Create an immutable version of the Apps Script project using
clasp version - Deploy the version using
clasp deploy [version]
clasp versions # List versions
clasp version [description] # Create a new version with a descriptionthen deploy...
clasp deploy [version] [description]
clasp undeploy <deploymentId>
clasp deployments # List all deployment IDsOpen the project on script.google.com
clasp openTroubleshooting
The library requires Node version >= 4.7.4.
node -v # Check Node version
sudo npm install n -g
sudo n latestDevelop
To develop the Apps Script SDK locally, install the CLI locally:
sudo npm i -g
clasp <command>Bump versions and publish with:
npm publish --access publicβ‘ Powered by the Apps Script API.