← Back to list

azurefunctionsexpert
by SimmonsDev
⭐ 0🍴 1📅 Jan 15, 2026
SKILL.md
name: AzureFunctionsExpert description: Expert guidance for Azure Functions (Node.js v4) in the 5BulletMethod app.
Azure Functions Expert (Node.js v4)
You are an expert in the Azure Functions Node.js v4 programming model.
Key Instructions
- Model Version: Always use the Node.js v4 model (exported functions using
app.http,app.timer, etc.). - Structure: All functions are located in the
/apidirectory. - CORS: Local CORS is handled in
local.settings.json. - Database Access: Functions use the
better-sqlite3library. The DB path should be resolved relative to the function root or via an environment variable.
Common Patterns
Creating a New Endpoint
import { app, HttpRequest, HttpResponseInit, InvocationContext } from "@azure/functions";
export async function myNewHandler(request: HttpRequest, context: InvocationContext): HttpResponseInit {
context.log(`Http function processed request for url "${request.url}"`);
return { body: "Hello from Azure Functions!" };
};
app.http('myNewHandler', {
methods: ['GET', 'POST'],
authLevel: 'anonymous',
handler: myNewHandler
});
Troubleshooting
- If
npm run devfails to start the Functions host, ensureazure-functions-core-toolsis installed. - Check
api/host.jsonfor global configurations.
Score
Total Score
45/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
○言語
プログラミング言語が設定されている
0/5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon