durable-map 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +30 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,6 +30,25 @@ graph LR
|
|
|
30
30
|
E -.->|Email| H["Email:sendgrid"]
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
+
### Azure Resource Info (Planned)
|
|
34
|
+
|
|
35
|
+
```mermaid
|
|
36
|
+
graph TB
|
|
37
|
+
subgraph Azure["☁️ Azure - Japan East"]
|
|
38
|
+
subgraph Plan["App Service Plan: asp-order-prod (P1v3 - $138.70/mo)"]
|
|
39
|
+
App["⚡ func-order-prod\nRuntime: .NET 8 isolated\nOS: Windows"]
|
|
40
|
+
end
|
|
41
|
+
subgraph Infra["Connected Resources"]
|
|
42
|
+
Storage[("📦 Storage: storderprod\nTaskHub: OrderHub")]
|
|
43
|
+
SQL[("🗄️ SQL: orders-db")]
|
|
44
|
+
AppInsights["📊 AppInsights: ai-order-prod"]
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
App --- Storage
|
|
48
|
+
App --- SQL
|
|
49
|
+
App --- AppInsights
|
|
50
|
+
```
|
|
51
|
+
|
|
33
52
|
## Quick Start
|
|
34
53
|
|
|
35
54
|
```bash
|
|
@@ -160,6 +179,17 @@ config (`.durable-map.yml`) > annotation (`@durable-map:infra`) > auto-detection
|
|
|
160
179
|
| Python | V2 | Planned |
|
|
161
180
|
| TypeScript | V4 | Planned |
|
|
162
181
|
|
|
182
|
+
## Roadmap
|
|
183
|
+
|
|
184
|
+
| Milestone | Description | Issues |
|
|
185
|
+
|-----------|-------------|--------|
|
|
186
|
+
| **v0.2.0** — Pipeline / CLI 連携 | Pipeline YAML パーサーと Azure CLI 連携でインフラ情報を取得 | [#13](../../issues/13), [#12](../../issues/12) |
|
|
187
|
+
| **v0.2.1** — IaC 解析 | Bicep / ARM テンプレートから Azure リソース関係を読み取る | [#11](../../issues/11) |
|
|
188
|
+
| **v0.3.0** — 出力品質・UX 改善 | Mermaid 図のレイアウト・テーマ改善、インフラ層解析の強化 | [#6](../../issues/6), [#3](../../issues/3), [#10](../../issues/10) |
|
|
189
|
+
| **v0.4.0** — マルチ言語対応 | TypeScript V4 / Python V2 の Durable Functions 解析対応 | [#5](../../issues/5), [#2](../../issues/2) |
|
|
190
|
+
| **v0.5.0** — 高度な解析 | 静的解析からボトルネック・アンチパターンを検出し警告出力 | [#4](../../issues/4) |
|
|
191
|
+
| **v1.0.0** — OSS 公開 | テストカバレッジ・リポジトリ移行・OSS 公開準備 | [#8](../../issues/8), [#9](../../issues/9), [#7](../../issues/7) |
|
|
192
|
+
|
|
163
193
|
## How It Works
|
|
164
194
|
|
|
165
195
|
1. Recursively scans `.cs` files in the target directory
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "durable-map",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "CLI tool to analyze Azure Durable Functions projects and auto-generate documentation with Mermaid flow diagrams. Visualize triggers, orchestrators, activities, and infrastructure dependencies.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|