azure-functions by aj-geddes/useful-ai-prompts
npx skills add https://github.com/aj-geddes/useful-ai-prompts --skill azure-functionsAzure Functions 支持在 Microsoft Azure 上进行无服务器计算。构建事件驱动的应用程序,具备自动扩展、与各种 Azure 服务的灵活绑定以及通过 Application Insights 进行集成监控的能力。
最小工作示例:
# Install Azure Functions Core Tools
curl https://aka.ms/install-artifacts-ubuntu.sh | bash
# Login to Azure
az login
# Create resource group
az group create --name myapp-rg --location eastus
# Create storage account (required for Functions)
az storage account create \
--name myappstore \
--location eastus \
--resource-group myapp-rg \
--sku Standard_LRS
# Create Function App
az functionapp create \
--resource-group myapp-rg \
--consumption-plan-location eastus \
--runtime node \
--runtime-version 18 \
--functions-version 4 \
--name myapp-function \
--storage-account myappstore
// ... (完整实现请参阅参考指南)
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
references/ 目录下的详细实现:
| 指南 | 内容 |
|---|---|
| 使用 Azure CLI 创建 Azure 函数 | 使用 Azure CLI 创建 Azure 函数 |
| Azure 函数实现 (Node.js) | Azure 函数实现 (Node.js) |
| 使用 Terraform 部署 Azure Functions | 使用 Terraform 部署 Azure Functions |
| 函数绑定配置 | 函数绑定配置 |
每周安装次数
95
代码仓库
GitHub 星标数
121
首次出现
2026年1月21日
安全审计
安装于
gemini-cli79
opencode79
claude-code76
codex75
cursor73
github-copilot64
Azure Functions enables serverless computing on Microsoft Azure. Build event-driven applications with automatic scaling, flexible bindings to various Azure services, and integrated monitoring through Application Insights.
Minimal working example:
# Install Azure Functions Core Tools
curl https://aka.ms/install-artifacts-ubuntu.sh | bash
# Login to Azure
az login
# Create resource group
az group create --name myapp-rg --location eastus
# Create storage account (required for Functions)
az storage account create \
--name myappstore \
--location eastus \
--resource-group myapp-rg \
--sku Standard_LRS
# Create Function App
az functionapp create \
--resource-group myapp-rg \
--consumption-plan-location eastus \
--runtime node \
--runtime-version 18 \
--functions-version 4 \
--name myapp-function \
--storage-account myappstore
// ... (see reference guides for full implementation)
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| Azure Function Creation with Azure CLI | Azure Function Creation with Azure CLI |
| Azure Function Implementation (Node.js) | Azure Function Implementation (Node.js) |
| Azure Functions with Terraform | Azure Functions with Terraform |
| Function Bindings Configuration | Function Bindings Configuration |
Weekly Installs
95
Repository
GitHub Stars
121
First Seen
Jan 21, 2026
Security Audits
Gen Agent Trust HubFailSocketPassSnykFail
Installed on
gemini-cli79
opencode79
claude-code76
codex75
cursor73
github-copilot64