@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.
- package/README.md +26 -1
- 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
|
+

|
|
167
|
+
|
|
168
|
+
### iOS App Architecture
|
|
169
|
+

|
|
170
|
+
|
|
171
|
+
### LeetCode Problem Solving Flow
|
|
172
|
+

|
|
173
|
+
|
|
149
174
|
## Output
|
|
150
175
|
|
|
151
176
|
The generated `.excalidraw` files can be:
|