<a href="https://coveralls.io/github/google/clasp?branch=master"><img src="https://coveralls.io/repos/github/google/clasp/badge.svg?branch=master" alt="Coverage Status"></a>
<a href="https://www.npmjs.com/package/@google/clasp"><img src="https://img.shields.io/npm/v/@google/clasp.svg" alt="npm Version"></a>
<a href="https://npmcharts.com/compare/@google/clasp?minimal=true"><img src="https://img.shields.io/npm/dw/@google/clasp.svg" alt="npm Downloads"></a>
<a href="https://david-dm.org/google/clasp" title="dependencies status"><img src="https://david-dm.org/google/clasp/status.svg"/></a>
<a href="https://github.com/google/gts" title="Code Style: Google"><img src="https://img.shields.io/badge/code%20style-google-blueviolet.svg"/></a>
<!-- GIF bash prompt: PS1='\[\033[38;5;9m\]❤ \[$(tput sgr0)\]' --> <!-- Width: 888px --> <!-- Commands: clasp create "Hello" ls echo 'function hello() { Logger.log("Hello, Apps Script!"); }' >> hello.js clasp push clasp deploy rm .clasp.json appsscript.json hello.js clear -->Develop Apps Script projects locally using clasp (Command Line Apps Script Projects).
To get started, try out the codelab!
You can also try clasp in Gitpod, a one-click online IDE for GitHub:
🗺️ 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:
tests/slides.gs
tests/sheets.gs
tests/
slides.js
sheets.js
🔷 Write Apps Script in TypeScript: Write your Apps Script projects using TypeScript features:
➡️ Run Apps Script: Execute your Apps Script from the command line. Features:
- V8 support take advantage of the performance boost of Chrome JavaScript engine:
appsscript.json
manifest to choose between the Rhino and V8 enginestsconfig.json
with the "target": "ES2019"
compiler optionFirst download clasp
:
npm install -g @google/clasp
Then enable the Google Apps Script API: https://script.google.com/home/usersettings
The following command provide basic Apps Script project management.
Note: Most of them require you to
clasp login
andclasp create/clone
before using the rest of the commands.
clasp
clasp login [--no-localhost] [--creds <file>] [--status]
clasp logout
clasp create [--title <title>] [--type <type>] [--rootDir <dir>] [--parentId <id>]
clasp clone <scriptId | scriptURL> [versionNumber] [--rootDir <dir>]
clasp pull [--versionNumber]
clasp push [--watch] [--force]
clasp status [--json]
clasp open [scriptId] [--webapp] [--creds] [--addon] [--deploymentId <id>]
clasp deployments
clasp deploy [--versionNumber <version>] [--description <description>] [--deploymentId <id>]
clasp undeploy [deploymentId] [--all]
clasp version [description]
clasp versions
clasp list
NOTE: These commands require you to add your Project ID.
clasp logs [--json] [--open] [--setup] [--watch] [--simplified]
clasp apis list
clasp apis enable <api>
clasp apis disable <api>
clasp setting <key> [value]
NOTE: This command requires you to bring your own Google API credentials.
Logs the user in. Saves the client credentials to a .clasprc.json
file.
--no-localhost
: Do not run a local server, manually enter code instead.--creds <file>
: Use custom credentials used for clasp run
. Saves a .clasprc.json
file to current working directory. This file should be private!--status
: Print who you are currently logged in as, if anyone.clasp login --no-localhost
clasp login --creds creds.json
clasp login --status
Logs out the user by deleting client credentials.
clasp logout
Creates a new script project. Prompts the user for the script type if not specified.
--type [docs/sheets/slides/forms]
: If specified, creates a new add-on attached to a Document, Spreadsheet, Presentation, or Form. If --parentId
is specified, this value is ignored.--title <title>
: A project title.--rootDir <dir>
: Local directory in which clasp will store your project files. If not specified, clasp will default to the current directory.--parentId <id>
: A project parent Id.
https://docs.google.com/presentation/d/{id}/edit
clasp create
clasp create --type standalone
(default)clasp create --type docs
clasp create --type sheets
clasp create --type slides
clasp create --type forms
clasp create --type webapp
clasp create --type api
clasp create --title "My Script"
clasp create --rootDir ./dist
clasp create --parentId "1D_Gxyv*****************************NXO7o"
These options can be combined like so:
clasp create --title "My Script" --parentId "1D_Gxyv*****************************NXO7o" --rootDir ./dist
Clones the script project from script.google.com.
scriptId | scriptURL
: The script ID or script URL to clone.--versionNumber <number>
: The version of the script to clone.--rootDir <dir>
: Local directory in which clasp will store your project files. If not specified, clasp will default to the current directory.clasp clone "15ImUCpyi1Jsd8yF8Z6wey_7cw793CymWTLxOqwMka3P1CzE5hQun6qiC"
clasp clone "https://script.google.com/d/15ImUCpyi1Jsd8yF8Z6wey_7cw793CymWTLxOqwMka3P1CzE5hQun6qiC/edit"
clasp clone "15ImUCpyi1Jsd8yF8Z6wey_7cw793CymWTLxOqwMka3P1CzE5hQun6qiC" --rootDir ./src
Fetches a project from either a provided or saved script ID. Updates local files with Apps Script project.
--versionNumber <number>
: The version number of the project to retrieve.clasp pull
clasp pull --versionNumber 23
Force writes all local files to script.google.com.
Warning: Google
scripts
APIs do not currently support atomic nor per file operations. Thus thepush
command always replaces the whole content of the online project with the files being pushed.
Ignores files:
.
.claspignore
file)-f
--force
: Forcibly overwrites the remote manifest.-w
--watch
: Watches local file changes. Pushes files every few seconds.clasp push
clasp push -f
clasp push --watch
Lists files that will be written to the server on push
.
Ignores files:
.
--json
: Show status in JSON form.clasp status
clasp status --json
Opens the current directory's clasp
project on script.google.com. Provide a scriptId
to open a different script. Can also open web apps.
[scriptId]
: The optional script project to open.--webapp
: Open web application in a browser.--creds
: Open the URL to create credentials.--addon
: List parent IDs and open the URL of the first one.--deploymentId <id>
: Use custom deployment ID with --webapp
.clasp open
clasp open "15ImUCpyi1Jsd8yF8Z6wey_7cw793CymWTLxOqwMka3P1CzE5hQun6qiC"
clasp open --webapp
clasp open --creds
clasp open --addon
clasp open --webapp --deploymentId abcd1234
List deployments of a script.
clasp deployments
Creates a version and deploys a script. The response gives the deployment ID and the version of the deployment.
For web apps, each deployment has a unique URL. To update/redeploy an existing deployment, provide the deployment ID.
-V <version>
--versionNumber <version>
: The project version to deploy at.-d <description>
--description <description>
: The deployment description.-i <id>
--deploymentId <id>
: The deployment ID to redeploy.clasp deploy
(create new deployment and new version)clasp deploy --versionNumber 4
(create new deployment)clasp deploy --description "Updates sidebar logo."
(deploy with description)clasp deploy --deploymentId abcd1234
(redeploy and create new version)clasp deploy -V 7 -d "Updates sidebar logo." -i abdc1234
Undeploys a deployment of a script.
[deploymentId]
: An optional deployment ID.-a
--all
: Undeploy all deployments.clasp undeploy
(undeploy the last deployment.)clasp undeploy "123"
clasp undeploy --all
Creates an immutable version of the script.
description
: description The description of the script version.clasp version
clasp version "Bump the version."
List versions of a script.
clasp versions
Lists your most recent Apps Script projects.
clasp list
: Prints helloworld1 – xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx ...
NOTE: These commands require Project ID/credentials setup (see below).
Prints out most recent the StackDriver logs. These are logs from console.log
, not Logger.log
.
--json
: Output logs in json format.--open
: Open StackDriver logs in a browser.--setup
: Setup StackDriver logs.--watch
: Retrieves the newest logs every 5 seconds.--simplified
: Removes timestamps from the logs.clasp logs ERROR Sat Apr 07 2019 10:58:31 GMT-0700 (PDT) myFunction my log error INFO Sat Apr 07 2019 10:58:31 GMT-0700 (PDT) myFunction info message
clasp logs --json
clasp logs --open
clasp logs --watch
clasp logs --simplified
Remotely executes an Apps Script function.
The complete step-by-step information on how to use clasp run
is available here: Run
Below is a short summary:
clasp login --creds creds.json
), see: Run - Prerequisitesappsscript.json
. Be sure it's pushed:"executionApi": { "access": "ANYONE" }
<functionName>
: The name of the function in the script that you want to run.--nondev
: If true, runs the function in non-devMode.-p <paramString>
--params <paramString>
: A JSON string array of parameters to pass to the functionclasp run 'sendEmail'
clasp run 'addOptions' -p '["string", 123, {"test": "for"}, true]'
List available APIs. Enables and disables Google APIs.
Lists Google APIs that can be enabled as Advanced Services.
clasp apis
clasp apis list
Enables or disables APIs with the Google Cloud project. These APIs are used via services like GmailApp and Advanced Services like BigQuery.
The API name can be found using clasp apis list
.
clasp apis enable drive
clasp apis disable drive
Open the Google Cloud Console where you can view and manage API access.
clasp apis --open
Displays the help function.
clasp
clasp help
Update .clasp.json
settings file.
If settingKey
is omitted it prints the current settings.
If newValue
is omitted it returns the current setting value.
settingKey
: settingKey The key in .clasp.json
you want to changenewValue
: newValue The new value for the settingclasp setting
clasp setting scriptId
clasp setting scriptId new-id
.claspignore
)Like .gitignore
, .claspignore
allows you to ignore files that you do not wish to not upload on clasp push
. Steps:
.claspignore
in your project's root directory.clasp push
. Note: The .claspignore
patterns are applied by multimatch, which is different from .gitignore
, especially for directories. To ignore a directory, use syntax like **/node_modules/**
.A sample .claspignore
ignoring everything except the manifest and
字节跳动发布的AI编程神器IDE
Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。
全能AI智能助手,随时解答生活与工作的多样问题
问小白,由元石科技研发的AI智能助手,快速准确地解答各种生活和工作问题,包括但不限于搜索、规划和社交互动,帮助用户在日常生活中提高效率,轻松管理个人事务。
实时语音翻译/同声传译工具
Transly是一个多场景的AI大语言模型驱动的同声传译、专业翻译助手,它拥有超精准的音频识别翻译能力,几乎零延迟的使用体验和支持多国语言可以让你带它走遍全球,无论你是留学生、商务人士、韩剧美剧爱好者,还是出国游玩、多国会议、跨国追星等等,都可以满足你所有需要同传的场景需求,线上线下通用,扫除语言障碍,让全世界的语言交流不再有国界。
一键生成PPT和Word,让学习生活更轻松
讯飞智文是一个利用 AI 技术的项目,能够帮助用户生成 PPT 以及各类文档。无论是商业领域的市场分析报告、年度目标制定,还是学生群体的职业生涯规划、实习避坑指南,亦或是活动策划、旅游攻略等内容,它都能提供支持,帮助用户精准表达,轻松呈现各种信息。
深度推理能力全新升级,全面对标OpenAI o1
科大讯飞的星火大模型,支持语言理解、知识问答和文本创作等多功 能,适用于多种文件和业务场景,提升办公和日常生活的效率。讯飞星火是一个提供丰富智能服务的平台,涵盖科技资讯、图像创作、写作辅助、编程解答、科研文献解读等功能,能为不同需求的用户提供便捷高效的帮助,助力用户轻松获取信息、解决问题,满足多样化使用场景。
一种基于大语言模型的高效单流解耦语音令牌文本到语音合成模型
Spark-TTS 是一个基于 PyTorch 的开源文本到语音合成项目,由多个知名机构联合参与。该项目提供了高效的 LLM(大语言模型)驱动的语音合成方案,支持语音克隆和语音创建功能,可通过命令行界面(CLI)和 Web UI 两种方式使用。用户可以根据需求调整语音的性别、音高、速度等参数,生成高质量的语音。该项目适用于多种场景,如有声读物制作、智能语音助手开发等。
AI助力,做PPT更简单!
咔片是一款轻量化在线演示设计工具,借助 AI 技术,实现从内容生成到智能设计的一站式 PPT 制作服务。支持多种文档格式导入生成 PPT,提供海量模板、智能美化、素材替换等功能,适用于销售、教师、学生等各类人群,能高效制作出高品质 PPT,满足不同场景演示需求。
选题、配图、成文,一站式创作,让内容运营更高效
讯飞绘文,一个AI集成平台,支持写作、选题、配图、排版和发布。高效生成适用于各类媒体的定制内容,加速品牌传播,提升内容营销效果。
专业的AI公文写作平台,公文写作神器
AI 材料星,专业的 AI 公文写作辅助平台,为体制内工作人员提供高效的公文写作解决方案。拥有海量公文文库、9 大核心 AI 功能,支持 30 + 文稿类 型生成,助力快速完成领导讲话、工作总结、述职报告等材料,提升办公效率,是体制打工人的得力写作神器。
OpenAI Agents SDK,助力开发者便捷使用 OpenAI 相关功能。
openai-agents-python 是 OpenAI 推出的一款强大 Python SDK,它为开发者提供了与 OpenAI 模型交互的高效工具,支持工具调用、结果处理、追踪等功能,涵盖多种应用场景,如研究助手、财务研究等,能显著提升开发效率,让开发者更轻松地利用 OpenAI 的技术优势。
最新AI工具、AI资讯
独家AI资源、AI项目落地
微信扫一扫关注公众号