@swiftlysingh/excalidraw-cli 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +26 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,18 @@
1
1
  # excalidraw-cli
2
+ <p>
3
+ <a href="https://www.npmjs.com/package/@swiftlysingh/excalidraw-cli"><img src="https://img.shields.io/npm/v/@swiftlysingh/excalidraw-cli" alt="npm version"></a>
4
+ <a href="https://github.com/swiftlysingh/excalidraw-cli/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue" alt="MIT License"></a>
5
+ </p>
6
+
7
+ <p align="center">
8
+ <img alt="image" src="https://github.com/user-attachments/assets/5af4b002-bd69-4187-8836-84135685117a" />
9
+ </p>
10
+
11
+ <p align="center">
12
+ Create Excalidraw flowcharts and diagrams from text-based DSL or JSON.
13
+ </p>
14
+
2
15
 
3
- Create Excalidraw flowcharts and diagrams from text-based DSL or JSON.
4
16
 
5
17
  ## Features
6
18
 
@@ -146,6 +158,19 @@ const input = {
146
158
  const json2 = await createFlowchartFromJSON(input);
147
159
  ```
148
160
 
161
+ ## Examples
162
+
163
+ Here are some flowcharts created with excalidraw-cli:
164
+
165
+ ### Simple Flow
166
+ ![Simple Flow](assets/up.png)
167
+
168
+ ### iOS App Architecture
169
+ ![iOS App Architecture](assets/ios-app-architecture.png)
170
+
171
+ ### LeetCode Problem Solving Flow
172
+ ![LeetCode Flow](assets/leetcode.png)
173
+
149
174
  ## Output
150
175
 
151
176
  The generated `.excalidraw` files can be:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swiftlysingh/excalidraw-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "CLI for creating Excalidraw flowcharts programmatically",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",