-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathIvy-All-Projects.json
More file actions
989 lines (989 loc) · 42.2 KB
/
Ivy-All-Projects.json
File metadata and controls
989 lines (989 loc) · 42.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
{
"project-demos": [
{
"name": "QueryParamIdApp",
"description": "",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/QueryParamIdApp",
"deploymentLink": "ivy-projectdemos-QueryParamIdApp.sliplane.app",
"tags": [
"Ivy.Analyser",
"demo"
]
},
{
"name": "GitHub Authentication Test",
"description": "",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/auth-github-test",
"deploymentLink": "ivy-projectdemos-auth-github-test.sliplane.app",
"tags": [
"Authentication",
"OAuth",
"GitHub",
"Security",
"User Management",
"Ivy Framework",
"C#",
".NET"
]
},
{
"name": "Autodealer CRM",
"description": "Autodealer CRM is a comprehensive customer relationship management system designed specifically for automotive dealerships. Built with Ivy Framework, it provides a complete solution for managing customers, leads, vehicles, tasks, communications, and sales analytics.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/autodealer-crm",
"deploymentLink": "ivy-projectdemos-autodealer-crm.sliplane.app",
"tags": [
"CRM",
"Automotive",
"Dealership",
"Customer Management",
"Lead Tracking",
"Inventory Management",
"Sales Analytics",
"Business Application"
]
},
{
"name": "Book Library",
"description": "Book Library is a compact Ivy sample app for tracking a personal reading list: a dashboard with metrics and charts plus My Books with full CRUD (list, details, create, edit, delete). Data is stored in SQLite with a small relational model: Authors, Genres, and Books linked by foreign keys. <p align=\"center\"> <a href=\"https://ivy-sliplane-deployment.sliplane.app/sliplane-deploy-app?repo=https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/book-library\"> <img src=\"https://raw.githubusercontent.com/Ivy-Interactive/Ivy-Examples/main/project-demos/sliplane-manage/Assets/deploy-button.svg\" alt=\"Host your Ivy app on Sliplane\" /> </a> </p> The link opens the \\1 with this repo path pre-filled (`Dockerfile` under `project-demos/book-library`). Replace the URL if you deploy from a fork.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/book-library",
"deploymentLink": "ivy-projectdemos-book-library.sliplane.app",
"tags": [
"Books",
"Reading List",
"Dashboard",
"CRUD",
"SQLite",
"Ivy",
"Sliplane"
]
},
{
"name": "ClickHouse Dashboard",
"description": "ClickHouse Dashboard is a web application for visualizing and analyzing ClickHouse database statistics with interactive charts, real-time metrics, table statistics, and comprehensive data insights.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/clickhouse-dashboard",
"deploymentLink": "ivy-projectdemos-clickhouse-dashboard.sliplane.app",
"tags": [
"ClickHouse",
"Analytics Dashboard",
"Data Visualization",
"Database Monitoring",
"SQL",
"OLAP"
]
},
{
"name": "Cold Call Tracker",
"description": "Cold Call Tracker is a web application for managing and tracking cold call leads with integration to Exa.ai websets API for company data and contact information. Ivy is a web framework for building interactive web applications using C# and .NET.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/cold-call-tracker",
"deploymentLink": "ivy-projectdemos-cold-call-tracker.sliplane.app",
"tags": [
"CRM",
"Lead Management",
"Sales",
"API Integration",
"Data Tracking"
]
},
{
"name": "Course-template",
"description": "Course Template is a web application template for creating and managing structured educational courses with modules, themes, sections, and interactive content.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/course-template",
"deploymentLink": "ivy-projectdemos-course-template.sliplane.app",
"tags": [
"Education",
"Course Management",
"Content Management",
"Template"
]
},
{
"name": "CRM File-Based",
"description": "A simple CRM (Customer Relationship Management) application built with Ivy Framework using SQLite file-based database. This demo showcases how to build a full-featured CRUD application with data visualization, blade navigation, and reactive UI updates.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/crm-filebased",
"deploymentLink": "ivy-projectdemos-crm-filebased.sliplane.app",
"tags": [
"CRM",
"SQLite",
"File-Based Database",
"Data Visualization",
"CRUD Application",
"Task Management",
"Contact Management"
]
},
{
"name": "Vc",
"description": "Vc is a CRM system for venture capital firms to manage startups, deals, founders, partners, and industries with comprehensive tracking and analytics capabilities. Ivy is a web framework for building interactive web applications using C# and .NET.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/crm-vc",
"deploymentLink": "ivy-projectdemos-crm-vc.sliplane.app",
"tags": [
"CRM",
"Venture Capital",
"Business Management",
"Analytics",
"Database"
]
},
{
"name": "GitHub Wrapped 2025",
"description": "GitHub Wrapped 2025 is a web application for visualizing and analyzing your GitHub coding activity from 2025. It displays your commits, pull requests, languages, repositories, and contribution statistics in an engaging, personalized slideshow format with animated visualizations and dynamic insights.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/github-wrapped",
"deploymentLink": "ivy-projectdemos-github-wrapped.sliplane.app",
"tags": [
"GitHub",
"Wrapped",
"OAuth",
"Authentication",
"Statistics",
"Analytics",
"Data Visualization",
"Ivy Framework",
"C#",
".NET"
]
},
{
"name": "Hello",
"description": "Hello is a simple starter application demonstrating the basic structure and setup of an Ivy web application. Ivy is a web framework for building interactive web applications using C# and .NET.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/helloworld",
"deploymentLink": "ivy-projectdemos-helloworld.sliplane.app",
"tags": [
"Starter",
"Template",
"Getting Started",
"Demo"
]
},
{
"name": "Hello",
"description": "Hello is a simple starter application demonstrating the basic structure and setup of an Ivy web application. This is a File-Based App. Ivy is a web framework for building interactive web applications using C# and .NET.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/helloworld-filebased",
"deploymentLink": "ivy-projectdemos-helloworld-filebased.sliplane.app",
"tags": [
"Starter",
"Template",
"Getting Started",
"Demo",
"Single",
"File-Based App"
]
},
{
"name": "IVY Ask Statistics",
"description": "",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/ivy-ask-statistics",
"deploymentLink": "ivy-projectdemos-ivy-ask-statistics.sliplane.app",
"tags": [
"Ivy.Analyser",
"Microsoft.EntityFrameworkCore.Design",
"Npgsql.EntityFrameworkCore.PostgreSQL",
"OpenAI",
"demo"
]
},
{
"name": "LlmTornado",
"description": "LlmTornado Examples is a web application demonstrating the \\1 library capabilities for interacting with LLM models. It features multiple chat interfaces including simple streaming chat and AI agents with function calling/tools support. https://github.com/user-attachments/assets/4466bb03-4a59-4469-b857-5bcd2e254963",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/llm-tornado-ollama",
"deploymentLink": "ivy-projectdemos-llm-tornado-ollama.sliplane.app",
"tags": [
"AI",
"LLM",
"Ollama",
"LlmTornado",
"Chat",
"Function Calling",
"Tools",
"Streaming",
"Agents",
"Local AI",
"Markdown"
]
},
{
"name": "LlmTornado OpenAI Examples",
"description": "LlmTornado OpenAI Examples is a web application demonstrating the \\1 library capabilities for interacting with OpenAI models. It features multiple chat interfaces including simple streaming chat and AI agents with function calling/tools support.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/llm-tornado-openai",
"deploymentLink": "ivy-projectdemos-llm-tornado-openai.sliplane.app",
"tags": [
"AI",
"LLM",
"OpenAI",
"LlmTornado",
"Chat",
"Function Calling",
"Tools",
"Streaming",
"Agents",
"GPT-4",
"GPT-3.5",
"Markdown",
"User Secrets"
]
},
{
"name": "AI Agent Workspace",
"description": "AI Agent Workspace is a web application for creating and interacting with customizable AI agents using Microsoft Agent Framework and Ollama. It features a blade-based navigation for managing multiple agent personas with configurable tools, dynamic model discovery, and real-time tool invocation visualization. <https://github.com/user-attachments/assets/765c9bf6-05e8-4eb9-acad-ced624f818bd>",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/microsoft-agent-framework",
"deploymentLink": "ivy-projectdemos-microsoft-agent-framework.sliplane.app",
"tags": [
"AI",
"Agents",
"Ollama",
"Microsoft Agent Framework",
"Chat",
"Function Calling",
"Tools",
"Multi-Agent",
"LLM",
"Local AI",
"Streaming",
"Tool Invocation"
]
},
{
"name": "OpperAI Chat",
"description": "OpperAI Chat is a web application for interactive AI-powered conversations using Opper.ai API with support for multiple AI models, conversation context, custom instructions, and mathematical expression rendering.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/opperai",
"deploymentLink": "ivy-projectdemos-opperai.sliplane.app",
"tags": [
"AI",
"Chat",
"Conversational AI",
"LLM",
"Natural Language Processing",
"API Integration"
]
},
{
"name": "PR Staging Deploy",
"description": "PR Staging Deploy is a backend service for deploying docs and samples to Sliplane for each pull request. It provides a UI to manage PR deployments, listens to GitHub webhooks for automatic deploy/redeploy/delete, and runs a background job to remove deployments older than 7 days.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/pr-staging-deploy",
"deploymentLink": "ivy-projectdemos-pr-staging-deploy.sliplane.app",
"tags": [
"PR Staging",
"Sliplane",
"GitHub",
"Deploy",
"Docs",
"Samples",
"Ivy Framework",
"C#",
".NET"
]
},
{
"name": "Showcase CRM",
"description": "Showcase CRM is a full-featured Customer Relationship Management web application built with Ivy Framework. It demonstrates how to build a complete CRM with companies, contacts, leads, deals, and users management—featuring an interactive dashboard with metrics and charts, Kanban boards for deal pipeline, DataTables with row actions, and Entity Framework Core with SQLite.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/showcase-crm",
"deploymentLink": "ivy-projectdemos-showcase-crm.sliplane.app",
"tags": [
"CRM",
"Sales",
"Leads",
"Deals",
"Kanban",
"Entity Framework",
"SQLite",
"Ivy"
]
},
{
"name": "Sliplane-deploy",
"description": "",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/sliplane-deploy",
"deploymentLink": "ivy-projectdemos-sliplane-deploy.sliplane.app",
"tags": [
"Ivy.Analyser",
"Ivy.Auth.Sliplane",
"demo"
]
},
{
"name": "Sliplane Manage",
"description": "Sliplane Manage is a web application for managing your \\1 infrastructure: servers, projects, and services. It uses the Sliplane Control API to list and manage resources, deploy services from Git repositories or Docker images, view logs and events, and perform pause/resume and delete operations—all through an interactive UI built with the Ivy framework.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/sliplane-manage",
"deploymentLink": "ivy-projectdemos-sliplane-manage.sliplane.app",
"tags": [
"Sliplane",
"DevOps",
"Servers",
"Projects",
"Services",
"Ivy Framework",
"C#",
".NET",
"API",
"OAuth"
]
},
{
"name": "Snowflake",
"description": "Snowflake Database Explorer is a web application for exploring Snowflake databases with interactive navigation through databases, schemas, and tables, real-time statistics, table structure inspection, and paginated data preview.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/snowflake",
"deploymentLink": "ivy-projectdemos-snowflake.sliplane.app",
"tags": [
"Snowflake",
"Database Explorer",
"Data Visualization",
"SQL",
"Data Warehouse"
]
},
{
"name": "Snowflake Dashboard",
"description": "Snowflake Dashboard is a web application for visualizing and analyzing data from Snowflake databases. It provides interactive charts, metrics, and data tables to explore brand analytics, price distributions, container types, and size patterns from Snowflake sample data.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/project-demos/snowflake-dashboard",
"deploymentLink": "ivy-projectdemos-snowflake-dashboard.sliplane.app",
"tags": [
"Snowflake",
"Dashboard",
"Data Visualization",
"Analytics",
"Business Intelligence",
"Charts",
"SQL",
"Data Warehouse"
]
}
],
"package-demos": [
{
"name": "HtmlAgilityPack",
"description": "HtmlAgilityPack is a web application for parsing and analyzing HTML from websites with DOM structure extraction, content analysis, and XPath query support.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/HtmlAgilityPack",
"deploymentLink": "ivy-packagedemos-HtmlAgilityPack.sliplane.app",
"tags": [
"HTML Parsing",
"Web Scraping",
"DOM",
"XPath"
]
},
{
"name": "Aspose.BarCode Generator",
"description": "Aspose.BarCode Generator is a web application for generating barcodes in multiple symbologies with adjustable sizes, live preview, and downloadable output.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/aspose-barcode",
"deploymentLink": "ivy-packagedemos-aspose-barcode.sliplane.app",
"tags": [
"Barcode",
"Image Generation",
"QR Code",
"Data Encoding"
]
},
{
"name": "Aspose.OCR Image-to-Text",
"description": "Aspose.OCR Image-to-Text is a web application for extracting text from images using OCR technology with image upload, text recognition, and formatted output display.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/aspose-ocr",
"deploymentLink": "ivy-packagedemos-aspose-ocr.sliplane.app",
"tags": [
"OCR",
"Image Processing",
"Text Recognition",
"Image-to-Text"
]
},
{
"name": "Aspose.Words",
"description": "Aspose.Words is a web application for generating professional Word documents with template support, dynamic content insertion, and document manipulation capabilities.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/aspose-words",
"deploymentLink": "ivy-packagedemos-aspose-words.sliplane.app",
"tags": [
"Word Documents",
"Document Generation",
"Office Documents",
"Report Generation"
]
},
{
"name": "BarcodeLib",
"description": "BarcodeLib is a web application for generating barcodes in multiple symbologies with customizable options, live preview, and downloadable PNG output.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/barcodelib",
"deploymentLink": "ivy-packagedemos-barcodelib.sliplane.app",
"tags": [
"Barcode",
"Image Generation",
"QR Code",
"Data Encoding"
]
},
{
"name": "Bogus",
"description": "Bogus is a web application for generating realistic fake data for testing and development with customizable fruit lists and randomized order generation.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/bogus",
"deploymentLink": "ivy-packagedemos-bogus.sliplane.app",
"tags": [
"Fake Data",
"Testing",
"Data Generation",
"Mock Data"
]
},
{
"name": "ClosedXML",
"description": "ClosedXML is a demonstration application for managing Excel workbooks with capabilities to create, edit, view, and manipulate Excel files including columns, rows, and data validation.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/closedxml",
"deploymentLink": "ivy-packagedemos-closedxml.sliplane.app",
"tags": [
"Excel",
"Spreadsheet",
"Data Management",
"Office Documents"
]
},
{
"name": "AWS Constructs",
"description": "AWS Constructs is a web application for building composable configuration models with hierarchical construct structures, interactive tree navigation, and dynamic node management.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/constructs",
"deploymentLink": "ivy-packagedemos-constructs.sliplane.app",
"tags": [
"AWS",
"Infrastructure",
"Configuration",
"Cloud"
]
},
{
"name": "Cronos",
"description": "Cronos is a web application for parsing and validating cron expressions with timezone support, next occurrence calculation, and predefined template patterns.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/cronos",
"deploymentLink": "ivy-packagedemos-cronos.sliplane.app",
"tags": [
"Cron",
"Scheduling",
"Date/Time",
"Task Scheduling",
"Cron Expression"
]
},
{
"name": "CSV Helper",
"description": "CSV Helper is a web application for managing product data with CSV import and export capabilities, allowing users to create, view, and bulk import products from CSV files.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/csvhelper",
"deploymentLink": "ivy-packagedemos-csvhelper.sliplane.app",
"tags": [
"CSV",
"Data Import",
"Data Export",
"File Processing"
]
},
{
"name": "DiffEngine",
"description": "DiffEngine is a web application for launching external diff tools to compare text files side-by-side with automatic tool detection and file comparison capabilities.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/diffengine",
"deploymentLink": "ivy-packagedemos-diffengine.sliplane.app",
"tags": [
"Diff",
"Text Comparison",
"File Comparison",
"Version Control"
]
},
{
"name": "DiffPlex – Text Comparison Tool",
"description": "DiffPlex is a web application for comparing two text blocks and visualizing differences with highlighted insertions, deletions, modifications, and unchanged content. An Ivy example demonstrating text comparison and diff visualization using the DiffPlex library.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/diffplex",
"deploymentLink": "ivy-packagedemos-diffplex.sliplane.app",
"tags": [
"Diff",
"Text Comparison",
"Version Control",
"Code Review"
]
},
{
"name": "Dnsclient",
"description": "DNS Client is a web application for performing DNS lookups with support for multiple record types, reverse DNS queries, and detailed DNS information display.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/dnsclient",
"deploymentLink": "ivy-packagedemos-dnsclient.sliplane.app",
"tags": [
"DNS",
"Network",
"Domain Name System",
"Network Tools"
]
},
{
"name": "Enums.NET",
"description": "Enums.NET is a web application for exploring and manipulating enum types with advanced operations including flag manipulation, validation, parsing, and attribute handling.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/enums-net",
"deploymentLink": "ivy-packagedemos-enums-net.sliplane.app",
"tags": [
"Enum",
"Type System",
"Reflection",
"Flags"
]
},
{
"name": "EPPlus",
"description": "EPPlus is a web application for managing Excel workbooks with capabilities to create, read, write, and manipulate Excel files including adding books, viewing data, and downloading workbooks.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/epplus",
"deploymentLink": "ivy-packagedemos-epplus.sliplane.app",
"tags": [
"Excel",
"Spreadsheet",
"Data Management",
"Office Documents"
]
},
{
"name": "ExcelDataReader",
"description": "ExcelDataReader is a web application for analyzing Excel and CSV files with worksheet browsing, data preview, and file information display.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/exceldatareader",
"deploymentLink": "ivy-packagedemos-exceldatareader.sliplane.app",
"tags": [
"Excel",
"Spreadsheet",
"Data Import",
"File Processing"
]
},
{
"name": "FastMember",
"description": "FastMember is a web application demonstrating high-performance runtime member access with performance benchmarks comparing FastMember against Reflection, PropertyDescriptor, and Dynamic C#.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/fastmember",
"deploymentLink": "ivy-packagedemos-fastmember.sliplane.app",
"tags": [
"Performance",
"Reflection",
"Runtime",
"Member Access",
"Optimization"
]
},
{
"name": "FluentDateTime",
"description": "FluentDateTime is a web application for date and time calculations with fluent syntax, supporting date arithmetic, relative time expressions, and formatted output.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/fluentdatetime",
"deploymentLink": "ivy-packagedemos-fluentdatetime.sliplane.app",
"tags": [
"Date/Time",
"DateTime",
"Date Calculation",
"Time Manipulation"
]
},
{
"name": "FuzzySharp",
"description": "FuzzySharp is a web application for intelligent fuzzy text search with support for typos, misspellings, and partial matches using multiple matching algorithms.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/fuzzysharp",
"deploymentLink": "ivy-packagedemos-fuzzysharp.sliplane.app",
"tags": [
"Fuzzy Search",
"String Matching",
"Search",
"Text Search"
]
},
{
"name": "GitHub",
"description": "GitHub is a web application for retrieving and displaying GitHub user statistics including profile information, repository data, commits, pull requests, and contribution metrics.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/github",
"deploymentLink": "ivy-packagedemos-github.sliplane.app",
"tags": [
"GitHub",
"API Integration",
"Developer Tools",
"Statistics",
"Analytics"
]
},
{
"name": "Handlebars.Net",
"description": "Handlebars.Net is a web application for HTML template generation using Handlebars syntax with data binding, helpers, and compiled template rendering.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/handlebars-net",
"deploymentLink": "ivy-packagedemos-handlebars-net.sliplane.app",
"tags": [
"Templating",
"Template Engine",
"HTML Generation",
"Handlebars"
]
},
{
"name": "Humanizer",
"description": "Humanizer is a web application for text transformation with support for multiple formats including PascalCase, camelCase, kebab-case, underscore_case, and smart truncation.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/humanizer",
"deploymentLink": "ivy-packagedemos-humanizer.sliplane.app",
"tags": [
"Text Transformation",
"String Formatting",
"Humanization",
"Text Processing"
]
},
{
"name": "IbanNet",
"description": "IbanNet is a web application for IBAN validation and generation with support for international bank account numbers, country-specific formats, and detailed validation results.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/ibannet",
"deploymentLink": "ivy-packagedemos-ibannet.sliplane.app",
"tags": [
"IBAN",
"Banking",
"Validation",
"Financial"
]
},
{
"name": "JWT Demo Application",
"description": "JWT Demo Application is an interactive web application for generating and validating JSON Web Tokens with support for custom claims, expiration, and detailed token information display. This is an interactive Ivy demo application showcasing JWT (JSON Web Tokens) concepts and integration with the Ivy framework.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/jwt",
"deploymentLink": "ivy-packagedemos-jwt.sliplane.app",
"tags": [
"JWT",
"Security",
"Authentication",
"Token Management",
"API Security"
]
},
{
"name": "Magick.NET-Q16-AnyCPU",
"description": "Magick.NET-Q16-AnyCPU is a web application for comprehensive image processing including format conversion, resizing, filtering, and advanced image manipulation operations.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/magick-net-q16-anycpu",
"deploymentLink": "ivy-packagedemos-magick-net-q16-anycpu.sliplane.app",
"tags": [
"Image Processing",
"Image Manipulation",
"Graphics",
"ImageMagick"
]
},
{
"name": "Mapster",
"description": "Mapster is a web application demonstrating bidirectional object-to-object mapping between Person and PersonDto classes with automatic field combination and validation.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/mapster",
"deploymentLink": "ivy-packagedemos-mapster.sliplane.app",
"tags": [
"Object Mapping",
"Data Transformation",
"DTO",
"Mapping"
]
},
{
"name": "Microsoft.SemanticKernel",
"description": "Microsoft.SemanticKernel is a web application for AI-powered action item extraction from text using GPT-4o-mini, with intelligent text analysis and formatted output display.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/microsoft-semantickernel",
"deploymentLink": "ivy-packagedemos-microsoft-semantickernel.sliplane.app",
"tags": [
"AI",
"Natural Language Processing",
"Text Analysis",
"OpenAI",
"Semantic Kernel"
]
},
{
"name": "Mimemapping",
"description": "MimeMapping is a web application for MIME type detection and file extension mapping with comprehensive file type information and extension lookup capabilities.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/mimemapping",
"deploymentLink": "ivy-packagedemos-mimemapping.sliplane.app",
"tags": [
"MIME Type",
"File Types",
"Content Type",
"HTTP"
]
},
{
"name": "MiniExcel",
"description": "MiniExcel is a web application for student management with Excel import and export capabilities, featuring CRUD operations, search, filtering, and real-time data synchronization.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/miniexcel",
"deploymentLink": "ivy-packagedemos-miniexcel.sliplane.app",
"tags": [
"Excel",
"Spreadsheet",
"Data Management",
"CRUD",
"Import/Export"
]
},
{
"name": "NAudio",
"description": "NAudio is a web application for audio processing with support for audio file playback, format conversion, and audio manipulation capabilities.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/naudio",
"deploymentLink": "ivy-packagedemos-naudio.sliplane.app",
"tags": [
"Audio",
"Sound Processing",
"Media",
"Audio Playback"
]
},
{
"name": "Newtonsoft.Json",
"description": "Newtonsoft.Json is a web application demonstrating JSON serialization and deserialization with two-way synchronization between JSON editor and form-based user interface.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/newtonsoft-json",
"deploymentLink": "ivy-packagedemos-newtonsoft-json.sliplane.app",
"tags": [
"JSON",
"Serialization",
"Data Format",
"API"
]
},
{
"name": "NodaTime",
"description": "NodaTime is a web application for timezone conversion and time handling with support for all TZDB timezones, real-time conversion, and formatted time display.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/nodatime",
"deploymentLink": "ivy-packagedemos-nodatime.sliplane.app",
"tags": [
"Date/Time",
"Timezone",
"DateTime Handling",
"Time Conversion"
]
},
{
"name": "OllamaSharp",
"description": "OllamaSharp is a web application for interactive AI chat using locally running Ollama models with streaming responses, model selection, and real-time conversation interface.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/ollamasharp",
"deploymentLink": "ivy-packagedemos-ollamasharp.sliplane.app",
"tags": [
"AI",
"Chat",
"LLM",
"Local AI",
"Conversational AI",
"Natural Language Processing"
]
},
{
"name": "OpenAIExample",
"description": "OpenAIExample demonstrates integration with OpenAI API for AI-powered features including chat, text generation, and natural language processing capabilities. Ivy is a web framework for building interactive web applications using C# and .NET.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/openai",
"deploymentLink": "ivy-packagedemos-openai.sliplane.app",
"tags": [
"AI",
"OpenAI",
"Natural Language Processing",
"API Integration",
"Chat"
]
},
{
"name": "PuppeteerSharp",
"description": "PuppeteerSharp is a web application for rendering websites, generating screenshots, and creating PDFs from web pages using headless Chrome browser automation.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/puppeteersharp",
"deploymentLink": "ivy-packagedemos-puppeteersharp.sliplane.app",
"tags": [
"Web Scraping",
"PDF Generation",
"Screenshot",
"Browser Automation",
"Headless Chrome"
]
},
{
"name": "QR Code Generator",
"description": "QR Code Generator is a web application for creating QR codes with vCard contact information, allowing users to generate scannable contact cards for easy sharing.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/qrcoder",
"deploymentLink": "ivy-packagedemos-qrcoder.sliplane.app",
"tags": [
"QR Code",
"Image Generation",
"vCard",
"Contact Management"
]
},
{
"name": "QuestPDF",
"description": "QuestPDF is a demonstration application for generating PDF documents from markdown content with real-time preview, customizable page settings, and interactive editing capabilities.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/questpdf",
"deploymentLink": "ivy-packagedemos-questpdf.sliplane.app",
"tags": [
"PDF",
"Document Generation",
"Markdown",
"Report Generation"
]
},
{
"name": "RestSharp",
"description": "RestSharp is a web application for testing REST APIs with support for multiple HTTP methods, JSON request/response handling, and interactive API client interface.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/restsharp",
"deploymentLink": "ivy-packagedemos-restsharp.sliplane.app",
"tags": [
"REST API",
"HTTP",
"API Testing",
"Web Services",
"Integration"
]
},
{
"name": "Scriban",
"description": "Scriban is a web application for template rendering using Liquid-like syntax with JSON model support, real-time validation, and formatted output generation.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/scriban",
"deploymentLink": "ivy-packagedemos-scriban.sliplane.app",
"tags": [
"Templating",
"Template Engine",
"Text Generation",
"Liquid"
]
},
{
"name": "Serialize.Linq",
"description": "Serialize.Linq is a web application for serializing and deserializing LINQ expressions to JSON, enabling expression storage, transmission, and dynamic evaluation.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/serialize-linq",
"deploymentLink": "ivy-packagedemos-serialize-linq.sliplane.app",
"tags": [
"LINQ",
"Serialization",
"Expression Trees",
"Query"
]
},
{
"name": "SharpYaml",
"description": "SharpYaml is a web application for converting JSON to YAML format with syntax-highlighted editing, instant conversion, and error handling.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/sharpyaml",
"deploymentLink": "ivy-packagedemos-sharpyaml.sliplane.app",
"tags": [
"YAML",
"JSON Conversion",
"Data Format",
"Serialization"
]
},
{
"name": "ShopifySharp",
"description": "ShopifySharp is a web application for browsing Shopify store product catalogs with product listing, details, and integration with Shopify API.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/shopifysharp",
"deploymentLink": "ivy-packagedemos-shopifysharp.sliplane.app",
"tags": [
"E-commerce",
"Shopify",
"API Integration",
"Product Management"
]
},
{
"name": "SimMetrics.Net",
"description": "SimMetrics.Net is a web application for measuring string similarity and distance using multiple algorithms including Levenshtein, Jaro-Winkler, Cosine, and Jaccard.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/simmetrics-net",
"deploymentLink": "ivy-packagedemos-simmetrics-net.sliplane.app",
"tags": [
"String Similarity",
"Text Matching",
"Distance Metrics",
"Fuzzy Matching"
]
},
{
"name": "SmartFormat.NET",
"description": "SmartFormat.NET is a web application for dynamic string formatting with rich templating, named placeholders, conditional sections, and pluralization support.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/smartformat-net",
"deploymentLink": "ivy-packagedemos-smartformat-net.sliplane.app",
"tags": [
"String Formatting",
"Templating",
"Text Generation",
"Formatting"
]
},
{
"name": "Stripe.net",
"description": "Stripe.net is a web application for creating Stripe checkout sessions with configurable products, amounts, currencies, and payment processing integration.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/stripe-net",
"deploymentLink": "ivy-packagedemos-stripe-net.sliplane.app",
"tags": [
"Payment Processing",
"Stripe",
"E-commerce",
"API Integration",
"Checkout"
]
},
{
"name": "Superpower",
"description": "Superpower is a web application demonstrating parser-combinator capabilities with multiple parser examples including JSON, CSV, and custom format parsers.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/superpower",
"deploymentLink": "ivy-packagedemos-superpower.sliplane.app",
"tags": [
"Parsing",
"Parser Combinator",
"Text Processing",
"Language Processing"
]
},
{
"name": "TimeZoneNames",
"description": "TimeZoneNames is a web application for time zone conversion and lookup with support for IANA, Windows, and Rails time zone identifiers.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/timezonenames",
"deploymentLink": "ivy-packagedemos-timezonenames.sliplane.app",
"tags": [
"Timezone",
"Date/Time",
"Time Conversion",
"IANA",
"Windows Timezone"
]
},
{
"name": "ULID",
"description": "ULID is a web application for generating and parsing ULID identifiers with timestamp extraction, sortable unique IDs, and detailed ULID information display.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/ulid",
"deploymentLink": "ivy-packagedemos-ulid.sliplane.app",
"tags": [
"ULID",
"Unique Identifier",
"ID Generation",
"Sortable ID"
]
},
{
"name": "UnitsNet",
"description": "UnitsNet is a web application for unit conversion with support for multiple quantity types including temperature, length, mass, volume, and comprehensive unit systems.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/unitsnet",
"deploymentLink": "ivy-packagedemos-unitsnet.sliplane.app",
"tags": [
"Unit Conversion",
"Measurements",
"Physical Quantities",
"Units"
]
},
{
"name": "XLParser",
"description": "XLParser is a web application for parsing and analyzing Excel formulas with token visualization, parse tree display, and detailed formula structure analysis.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/xlparser",
"deploymentLink": "ivy-packagedemos-xlparser.sliplane.app",
"tags": [
"Excel",
"Formula Parsing",
"Spreadsheet",
"Formula Analysis"
]
},
{
"name": "YamlDotNet",
"description": "YamlDotNet is a web application for YAML serialization and deserialization with real-time conversion between C# objects and YAML format, including field validation and error handling.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/yamldotnet",
"deploymentLink": "ivy-packagedemos-yamldotnet.sliplane.app",
"tags": [
"YAML",
"Serialization",
"Data Format",
"Configuration"
]
},
{
"name": "ZString",
"description": "ZString is a web application demonstrating high-performance string operations with zero-allocation string formatting and memory-efficient string manipulation.",
"githubLink": "https://github.com/Ivy-Interactive/Ivy-Examples/tree/main/packages-demos/zstring",
"deploymentLink": "ivy-packagedemos-zstring.sliplane.app",
"tags": [
"Performance",
"String Formatting",
"Zero Allocation",
"Optimization"
]
}
]
}