-
Notifications
You must be signed in to change notification settings - Fork 10
/
processed_landscape.yml
3886 lines (3886 loc) · 164 KB
/
processed_landscape.yml
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
990
991
992
993
994
995
996
997
998
999
1000
# THIS FILE IS GENERATED AUTOMATICALLY!
landscape:
- category:
name: Platforms & Runtimes
subcategories:
- subcategory:
name: Interop
items:
- item:
name: Backplane - FDC3 Desktop Agent Bridging
homepage_url: https://backplane.finos.org
project: incubating
repo_url: https://github.com/finos/backplane
logo: backplane.svg
crunchbase: https://www.crunchbase.com/organization/finos-foundation
crunchbase_data:
name: FINOS
description: FINOS is a non-profit foundation with Wall Street roots, setting out to build a new open source innovation model for fintech.
num_employees_min: 1
num_employees_max: 10
homepage: https://www.finos.org/
city: Burlingame
region: California
country: United States
twitter: https://twitter.com/finosfoundation
linkedin: https://www.linkedin.com/company/finosfoundation
acquisitions: []
parents:
- https://www.crunchbase.com/organization/linux-foundation
stockExchange: null
company_type: Non Profit
industries:
- Banking
- Developer Platform
- FinTech
- Finance
- Financial Services
- Information Technology
- Software
- Web Development
github_data:
languages:
- name: C#
value: 87412
color: '#178600'
- name: TypeScript
value: 5867
color: '#2b7489'
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;20;17;42;0;2
firstWeek: 2021-12-12Z
stars: 0
license: Apache License 2.0
description: FDC3 Desktop Agent Bridge
latest_commit_date: '2022-12-01T14:03:40Z'
latest_commit_link: /finos/backplane/commit/bd097234215a37a4decf18e66096447f9425ee05
contributors_count: 2
contributors_link: https://github.com/finos/backplane/graphs/contributors
repos:
- url: https://github.com/finos/backplane
stars: 0
github_start_commit_data:
start_commit_link: /finos/backplane/commit/d56293f5948f3feeb69e54156f9c6ab469606a56
start_date: '2022-11-04T07:03:58Z'
image_data:
fileName: backplane-fdc3-desktop-agent-bridging.svg
hash: GM9di7obViYb+AhpCKTgAcUKXYPYLBvxs4DtHeIFxH4=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-12-07T09:34:00.000Z
- item:
name: FDC3
homepage_url: https://fdc3.finos.org
project: active
repo_url: https://github.com/finos/fdc3
license: FINOS IP Policy
logo: fdc3.svg
crunchbase: https://www.crunchbase.com/organization/finos-foundation
crunchbase_data:
name: FINOS
description: FINOS is a non-profit foundation with Wall Street roots, setting out to build a new open source innovation model for fintech.
num_employees_min: 1
num_employees_max: 10
homepage: https://www.finos.org/
city: Burlingame
region: California
country: United States
twitter: https://twitter.com/finosfoundation
linkedin: https://www.linkedin.com/company/finosfoundation
acquisitions: []
parents:
- https://www.crunchbase.com/organization/linux-foundation
stockExchange: null
company_type: Non Profit
industries:
- Banking
- Developer Platform
- FinTech
- Finance
- Financial Services
- Information Technology
- Software
- Web Development
github_data:
languages:
- name: HTML
value: 908426
color: '#e34c26'
- name: TypeScript
value: 175447
color: '#2b7489'
- name: JavaScript
value: 44965
color: '#f1e05a'
- name: CSS
value: 9347
color: '#563d7c'
- name: Shell
value: 25
color: '#89e051'
contributions: 6;20;9;0;16;16;18;6;23;7;18;29;12;13;12;7;24;5;5;46;36;21;78;61;64;19;14;11;14;0;11;0;7;7;9;0;12;5;1;0;6;5;0;7;2;5;10;28;24;16;7;2
firstWeek: 2021-12-12Z
stars: 126
license: Apache License 2.0
description: An open standard for the financial desktop.
latest_commit_date: '2022-12-02T13:46:48Z'
latest_commit_link: /finos/FDC3/commit/dc42f9628ca07d7e221fa1e1e6d2b0af81abbb19
release_date: '2022-08-30T11:31:18Z'
release_link: https://github.com/finos/fdc3/releases
contributors_count: 54
contributors_link: https://github.com/finos/fdc3/graphs/contributors
repos:
- url: https://github.com/finos/fdc3
stars: 126
github_start_commit_data:
start_commit_link: /finos/FDC3/commit/84bc36d712b99756534015b8043ef44c1db66b4f
start_date: '2018-02-17T04:22:36Z'
image_data:
fileName: fdc3.svg
hash: +a1sYEDkNXVxAvWJvxUirJoXYuZVAcw2vnk6u//FflI=
best_practice_data:
badge: 6579
percentage: 99
twitter_data:
latest_tweet_date: 2022-12-07T09:34:00.000Z
- item:
name: FDC3 Conformance Framework
homepage_url: https://fdc3.finos.org
project: incubating
repo_url: https://github.com/finos/FDC3-conformance-framework
license: Apache License 2.0
logo: fdc3-conformance.svg
crunchbase: https://www.crunchbase.com/organization/finos-foundation
crunchbase_data:
name: FINOS
description: FINOS is a non-profit foundation with Wall Street roots, setting out to build a new open source innovation model for fintech.
num_employees_min: 1
num_employees_max: 10
homepage: https://www.finos.org/
city: Burlingame
region: California
country: United States
twitter: https://twitter.com/finosfoundation
linkedin: https://www.linkedin.com/company/finosfoundation
acquisitions: []
parents:
- https://www.crunchbase.com/organization/linux-foundation
stockExchange: null
company_type: Non Profit
industries:
- Banking
- Developer Platform
- FinTech
- Finance
- Financial Services
- Information Technology
- Software
- Web Development
github_data:
languages:
- name: TypeScript
value: 209941
color: '#2b7489'
- name: JavaScript
value: 16282
color: '#f1e05a'
- name: HTML
value: 6855
color: '#e34c26'
- name: CSS
value: 390
color: '#563d7c'
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;5;3;3;13;2;5;2;0;1;0;1;0;1;0;4;28;21;18;5;1;15;20;9;10;28;70;84;95;66
firstWeek: 2021-12-12Z
stars: 7
license: Apache License 2.0
description: A framework for testing whether desktop containers implement the FDC3 standard
latest_commit_date: '2022-12-06T15:23:06Z'
latest_commit_link: /finos/FDC3-conformance-framework/commit/b08a16518d012e98cca9e87223af8e74881cd9e6
release_date: '2022-12-05T15:25:00Z'
release_link: https://github.com/finos/FDC3-conformance-framework/releases
contributors_count: 15
contributors_link: https://github.com/finos/FDC3-conformance-framework/graphs/contributors
repos:
- url: https://github.com/finos/FDC3-conformance-framework
stars: 7
github_start_commit_data:
start_commit_link: /finos/FDC3-conformance-framework/commit/f676450ae37b1f1b6ba4dc523fb52a463f52eb08
start_date: '2022-05-09T09:28:47Z'
image_data:
fileName: fdc3-conformance-framework.svg
hash: yBfWmBriUa7bgSr4QXjKun3U/7Bz29Km0uN/SJx0z/M=
best_practice_data:
badge: 6456
percentage: 15
twitter_data:
latest_tweet_date: 2022-12-07T09:34:00.000Z
- item:
name: FDC3 Desktop Agent
homepage_url: https://github.com/finos/fdc3-desktop-agent
project: incubating
repo_url: https://github.com/finos/fdc3-desktop-agent
logo: fdc3-desktop-agent.svg
crunchbase: https://www.crunchbase.com/organization/finos-foundation
crunchbase_data:
name: FINOS
description: FINOS is a non-profit foundation with Wall Street roots, setting out to build a new open source innovation model for fintech.
num_employees_min: 1
num_employees_max: 10
homepage: https://www.finos.org/
city: Burlingame
region: California
country: United States
twitter: https://twitter.com/finosfoundation
linkedin: https://www.linkedin.com/company/finosfoundation
acquisitions: []
parents:
- https://www.crunchbase.com/organization/linux-foundation
stockExchange: null
company_type: Non Profit
industries:
- Banking
- Developer Platform
- FinTech
- Finance
- Financial Services
- Information Technology
- Software
- Web Development
github_data:
languages:
- name: TypeScript
value: 118180
color: '#2b7489'
- name: JavaScript
value: 34806
color: '#f1e05a'
- name: CSS
value: 3687
color: '#563d7c'
- name: HTML
value: 3242
color: '#e34c26'
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;3;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
firstWeek: 2021-12-12Z
stars: 17
license: Apache License 2.0
description: Chrome Extension implementation of an FDC3 Desktop Agent
latest_commit_date: '2022-06-23T15:06:53Z'
latest_commit_link: /finos/fdc3-desktop-agent/commit/92c4d134dec2eab8b659500cb1fa02eb2724ef97
contributors_count: 7
contributors_link: https://github.com/finos/fdc3-desktop-agent/graphs/contributors
repos:
- url: https://github.com/finos/fdc3-desktop-agent
stars: 17
github_start_commit_data:
start_commit_link: /finos/fdc3-desktop-agent/commit/f90c148f8259a5647a923cdb66ec94fa48a77d7d
start_date: '2019-11-25T14:45:56Z'
image_data:
fileName: fdc3-desktop-agent.svg
hash: P6D2NZK9yO53zybOIOoXSoSXuz0mZm4AaKWzlFogeSs=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-12-07T09:34:00.000Z
- item:
name: Plexus Interop
homepage_url: https://plexus.finos.org
project: incubating
repo_url: https://github.com/finos/plexus-interop
logo: plexus-interop.svg
crunchbase: https://www.crunchbase.com/organization/finos-foundation
crunchbase_data:
name: FINOS
description: FINOS is a non-profit foundation with Wall Street roots, setting out to build a new open source innovation model for fintech.
num_employees_min: 1
num_employees_max: 10
homepage: https://www.finos.org/
city: Burlingame
region: California
country: United States
twitter: https://twitter.com/finosfoundation
linkedin: https://www.linkedin.com/company/finosfoundation
acquisitions: []
parents:
- https://www.crunchbase.com/organization/linux-foundation
stockExchange: null
company_type: Non Profit
industries:
- Banking
- Developer Platform
- FinTech
- Finance
- Financial Services
- Information Technology
- Software
- Web Development
github_data:
languages:
- name: C#
value: 2853919
color: '#178600'
- name: TypeScript
value: 1215517
color: '#2b7489'
- name: JavaScript
value: 709799
color: '#f1e05a'
- name: Xtend
value: 225157
- name: Java
value: 78616
color: '#b07219'
- name: HTML
value: 12786
color: '#e34c26'
- name: Batchfile
value: 10399
color: '#C1F12E'
- name: CSS
value: 3543
color: '#563d7c'
contributions: 0;0;0;0;0;0;4;8;6;7;3;8;12;0;1;14;3;0;0;0;0;0;5;1;5;1;7;7;0;0;0;0;1;0;0;0;1;8;6;3;0;8;0;12;0;10;9;0;0;0;0;0
firstWeek: 2021-12-12Z
stars: 259
license: Apache License 2.0
description: Plexus Interop open source project hosted by the Fintech Open Source Foundation
latest_commit_date: '2022-10-31T09:18:44Z'
latest_commit_link: /finos/plexus-interop/commit/19329e54ab01c79e5f6c38c8efb295bed09bed1a
release_date: '2021-08-18T12:52:54Z'
release_link: https://github.com/finos/plexus-interop/releases
contributors_count: 18
contributors_link: https://github.com/finos/plexus-interop/graphs/contributors
repos:
- url: https://github.com/finos/plexus-interop
stars: 258
- url: https://github.com/finos/plexus-interop-desktop-api
stars: 1
github_start_commit_data:
start_commit_link: /finos/plexus-interop/commit/378aefc7965a6c0ecd4f9e99c73adb52e66f71b0
start_date: '2017-09-27T14:07:48Z'
image_data:
fileName: plexus-interop.svg
hash: qmla9NGBzOtKI33CeZrWaNrQC9abFxPVvIj6d0tuw8M=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-12-07T09:34:00.000Z
- item:
name: Spring Bot
homepage_url: https://springbot.finos.org
project: incubating
repo_url: https://github.com/finos/spring-bot
logo: springbot.svg
crunchbase: https://www.crunchbase.com/organization/finos-foundation
crunchbase_data:
name: FINOS
description: FINOS is a non-profit foundation with Wall Street roots, setting out to build a new open source innovation model for fintech.
num_employees_min: 1
num_employees_max: 10
homepage: https://www.finos.org/
city: Burlingame
region: California
country: United States
twitter: https://twitter.com/finosfoundation
linkedin: https://www.linkedin.com/company/finosfoundation
acquisitions: []
parents:
- https://www.crunchbase.com/organization/linux-foundation
stockExchange: null
company_type: Non Profit
industries:
- Banking
- Developer Platform
- FinTech
- Finance
- Financial Services
- Information Technology
- Software
- Web Development
github_data:
languages:
- name: Java
value: 695178
color: '#b07219'
- name: FreeMarker
value: 32533
color: '#0050b2'
- name: HTML
value: 23483
color: '#e34c26'
- name: JavaScript
value: 19593
color: '#f1e05a'
- name: Fluent
value: 6
contributions: 10;4;0;1;6;0;4;35;6;0;1;7;14;1;10;0;1;6;8;10;13;0;9;1;1;4;3;8;10;4;3;0;0;9;2;1;3;1;5;0;3;0;2;0;0;0;0;0;0;0;0;0
firstWeek: 2021-12-12Z
stars: 39
license: Apache License 2.0
description: Spring Boot + Java Integration for Symphony/Teams Chat Platform Bots and Apps
latest_commit_date: '2022-09-30T10:04:48Z'
latest_commit_link: /finos/spring-bot/commit/e2a346c4ebe8aa5560edd4a963eb11b041610539
release_date: '2022-09-20T12:58:25Z'
release_link: https://github.com/finos/spring-bot/releases
contributors_count: 20
contributors_link: https://github.com/finos/spring-bot/graphs/contributors
repos:
- url: https://github.com/finos/spring-bot
stars: 39
github_start_commit_data:
start_commit_link: /finos/symphony-java-toolkit/commit/8bbfa4b073c4d6664942784ee2ec9a44ab5641cc
start_date: '2019-07-10T15:19:35Z'
image_data:
fileName: spring-bot.svg
hash: 6R/au401dh2ClzuODRmvkwKPkf0Q7Ge7abeem2wfa5w=
best_practice_data:
badge: 5948
percentage: 100
twitter_data:
latest_tweet_date: 2022-12-07T09:34:00.000Z
- subcategory:
name: Containers
items:
- item:
name: FDC3 Sail
homepage_url: https://github.com/finos/FDC3-Sail
project: incubating
repo_url: https://github.com/finos/FDC3-Sail
logo: sail.svg
crunchbase: https://www.crunchbase.com/organization/finos-foundation
crunchbase_data:
name: FINOS
description: FINOS is a non-profit foundation with Wall Street roots, setting out to build a new open source innovation model for fintech.
num_employees_min: 1
num_employees_max: 10
homepage: https://www.finos.org/
city: Burlingame
region: California
country: United States
twitter: https://twitter.com/finosfoundation
linkedin: https://www.linkedin.com/company/finosfoundation
acquisitions: []
parents:
- https://www.crunchbase.com/organization/linux-foundation
stockExchange: null
company_type: Non Profit
industries:
- Banking
- Developer Platform
- FinTech
- Finance
- Financial Services
- Information Technology
- Software
- Web Development
github_data:
languages:
- name: TypeScript
value: 219220
color: '#2b7489'
- name: JavaScript
value: 11324
color: '#f1e05a'
- name: HTML
value: 2551
color: '#e34c26'
- name: CSS
value: 1816
color: '#563d7c'
contributions: 0;0;0;0;0;0;0;0;0;0;0;1;7;23;6;5;22;6;5;10;6;0;2;2;1;3;1;1;3;1;0;3;3;1;1;0;0;0;4;0;9;5;6;9;1;4;13;15;27;17;50;30
firstWeek: 2021-12-12Z
stars: 17
license: Apache License 2.0
description: 'Open implementation of the FDC3 standard using Electron and an integrated App Directory. '
latest_commit_date: '2022-12-06T17:09:45Z'
latest_commit_link: /finos/FDC3-Sail/commit/828020a121b88c8ba7bd7e3f2858b2032e111129
release_date: '2022-12-06T17:16:55Z'
release_link: https://github.com/finos/FDC3-Sail/releases
contributors_count: 6
contributors_link: https://github.com/finos/FDC3-Sail/graphs/contributors
repos:
- url: https://github.com/finos/FDC3-Sail
stars: 17
github_start_commit_data:
start_commit_link: /finos/FDC3-Sail/commit/5073de0774f8b92eab2890063267850fe060a2f9
start_date: '2022-02-26T12:56:00Z'
image_data:
fileName: fdc3-sail.svg
hash: wuuFpjU+wuF6sEYUuaAtOKAnnPytDSKk9SBt3+j/QBc=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-12-07T09:34:00.000Z
- item:
name: Secure Electron Adapter
homepage_url: https://sea.finos.org
project: incubating
repo_url: https://github.com/finos/secure-electron-adapter
logo: secure-electron-adapter.svg
crunchbase: https://www.crunchbase.com/organization/finos-foundation
crunchbase_data:
name: FINOS
description: FINOS is a non-profit foundation with Wall Street roots, setting out to build a new open source innovation model for fintech.
num_employees_min: 1
num_employees_max: 10
homepage: https://www.finos.org/
city: Burlingame
region: California
country: United States
twitter: https://twitter.com/finosfoundation
linkedin: https://www.linkedin.com/company/finosfoundation
acquisitions: []
parents:
- https://www.crunchbase.com/organization/linux-foundation
stockExchange: null
company_type: Non Profit
industries:
- Banking
- Developer Platform
- FinTech
- Finance
- Financial Services
- Information Technology
- Software
- Web Development
github_data:
languages:
- name: JavaScript
value: 294936
color: '#f1e05a'
- name: CSS
value: 3751
color: '#563d7c'
- name: HTML
value: 1245
color: '#e34c26'
- name: TypeScript
value: 907
color: '#2b7489'
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
firstWeek: 2021-12-12Z
stars: 14
license: Apache License 2.0
description: null
latest_commit_date: '2020-06-08T20:06:38Z'
latest_commit_link: /finos/secure-electron-adapter/commit/ccad879c1f2eb32261e6cd1d843758f8c0c94e1c
contributors_count: 4
contributors_link: https://github.com/finos/secure-electron-adapter/graphs/contributors
repos:
- url: https://github.com/finos/secure-electron-adapter
stars: 11
- url: https://github.com/finos/sea-quick-start
stars: 3
github_start_commit_data:
start_commit_link: /finos/secure-electron-adapter/commit/113f09032ed054ab68e053ff4fc0b07270e474f4
start_date: '2019-10-22T15:46:13Z'
image_data:
fileName: secure-electron-adapter.svg
hash: lfZpMD4wXVurG7axUiXlKYb+G0CEFI0Ql4kFKAaivCI=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-12-07T09:34:00.000Z
- item:
name: Symphony Electron
homepage_url: https://github.com/finos/SymphonyElectron
project: active
repo_url: https://github.com/finos/SymphonyElectron
logo: symphony-electron.svg
crunchbase: https://www.crunchbase.com/organization/finos-foundation
crunchbase_data:
name: FINOS
description: FINOS is a non-profit foundation with Wall Street roots, setting out to build a new open source innovation model for fintech.
num_employees_min: 1
num_employees_max: 10
homepage: https://www.finos.org/
city: Burlingame
region: California
country: United States
twitter: https://twitter.com/finosfoundation
linkedin: https://www.linkedin.com/company/finosfoundation
acquisitions: []
parents:
- https://www.crunchbase.com/organization/linux-foundation
stockExchange: null
company_type: Non Profit
industries:
- Banking
- Developer Platform
- FinTech
- Finance
- Financial Services
- Information Technology
- Software
- Web Development
github_data:
languages:
- name: TypeScript
value: 871875
color: '#2b7489'
- name: C#
value: 479904
color: '#178600'
- name: C
value: 60031
color: '#555555'
- name: HTML
value: 44834
color: '#e34c26'
- name: Less
value: 40472
- name: Batchfile
value: 35524
color: '#C1F12E'
- name: Shell
value: 16390
color: '#89e051'
- name: C++
value: 10784
color: '#f34b7d'
- name: Smalltalk
value: 8444
color: '#596706'
- name: CSS
value: 6788
color: '#563d7c'
- name: Objective-C
value: 6067
color: '#438eff'
- name: JavaScript
value: 5146
color: '#f1e05a'
- name: NSIS
value: 3640
- name: ASP.NET
value: 964
- name: Dockerfile
value: 743
color: '#384d54'
- name: VBScript
value: 175
- name: PowerShell
value: 116
color: '#012456'
contributions: 0;0;2;3;5;4;4;4;6;3;3;3;0;2;1;0;4;7;3;3;2;3;10;2;2;0;2;1;0;2;2;2;5;7;3;3;1;5;1;1;3;6;0;1;5;2;1;9;4;12;7;27
firstWeek: 2021-12-12Z
stars: 82
license: Apache License 2.0
description: A desktop client for the Symphony Collaboration Platform built using Electron
latest_commit_date: '2022-12-06T14:13:01Z'
latest_commit_link: /finos/SymphonyElectron/commit/d9b08a220bc80cd9eec0ab9d5c0ab143e4d4fcab
release_date: '2022-06-15T08:13:16Z'
release_link: https://github.com/finos/SymphonyElectron/releases
contributors_count: 35
contributors_link: https://github.com/finos/SymphonyElectron/graphs/contributors
repos:
- url: https://github.com/finos/SymphonyElectron
stars: 72
- url: https://github.com/finos/SwiftSearch
stars: 6
- url: https://github.com/finos/ScreenSnippet
stars: 4
- url: https://github.com/finos/ScreenSnippet2
stars: 0
- url: https://github.com/finos/ScreenShareIndicatorFrame
stars: 0
github_start_commit_data:
start_commit_link: /finos/SymphonyElectron/commit/aee8779c164222f4ba65c329b093859f38ffef10
start_date: '2016-09-27T02:33:09Z'
image_data:
fileName: symphony-electron.svg
hash: PEFs0woCXzeG+4iJ+aY8LzqDXwuGgl9zOiTQi6NzM+U=
best_practice_data:
badge: 6746
percentage: 100
twitter_data:
latest_tweet_date: 2022-12-07T09:34:00.000Z
- subcategory:
name: Openfin Ecosystem
items:
- item:
name: OpenFin React Hooks
homepage_url: https://github.com/finos/openfin-react-hooks
project: incubating
repo_url: https://github.com/finos/openfin-react-hooks
logo: openfin-react-hooks.svg
crunchbase: https://www.crunchbase.com/organization/finos-foundation
crunchbase_data:
name: FINOS
description: FINOS is a non-profit foundation with Wall Street roots, setting out to build a new open source innovation model for fintech.
num_employees_min: 1
num_employees_max: 10
homepage: https://www.finos.org/
city: Burlingame
region: California
country: United States
twitter: https://twitter.com/finosfoundation
linkedin: https://www.linkedin.com/company/finosfoundation
acquisitions: []
parents:
- https://www.crunchbase.com/organization/linux-foundation
stockExchange: null
company_type: Non Profit
industries:
- Banking
- Developer Platform
- FinTech
- Finance
- Financial Services
- Information Technology
- Software
- Web Development
github_data:
languages:
- name: TypeScript
value: 48332
color: '#2b7489'
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
firstWeek: 2021-12-12Z
stars: 44
license: Apache License 2.0
description: A collection of React Hooks built on top of the Openfin API - from Scott Logic
latest_commit_date: '2020-04-12T16:47:48Z'
latest_commit_link: /finos/openfin-react-hooks/commit/735358503d93e93b002f16328030d02cde7b6bd2
release_date: '2020-02-10T11:41:46Z'
release_link: https://github.com/finos/openfin-react-hooks/releases
contributors_count: 15
contributors_link: https://github.com/finos/openfin-react-hooks/graphs/contributors
repos:
- url: https://github.com/finos/openfin-react-hooks
stars: 44
github_start_commit_data:
start_commit_link: /finos/openfin-react-hooks/commit/2b114b1f209e6be905d0c62c55855679446e044c
start_date: '2019-05-17T10:48:16Z'
image_data:
fileName: open-fin-react-hooks.svg
hash: o08eQCbsrrV8a62TsHwqEj+SkgLpRn0fo3nHmBPEznw=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-12-07T09:34:00.000Z
- category:
name: Enablement
subcategories:
- subcategory:
name: ODP Toolchain
items:
- item:
name: CLA Bot
homepage_url: https://finos.github.io/cla-bot
project: active
repo_url: https://github.com/finos/cla-bot
logo: cla-bot.svg
crunchbase: https://www.crunchbase.com/organization/finos-foundation
crunchbase_data:
name: FINOS
description: FINOS is a non-profit foundation with Wall Street roots, setting out to build a new open source innovation model for fintech.
num_employees_min: 1
num_employees_max: 10
homepage: https://www.finos.org/
city: Burlingame
region: California
country: United States
twitter: https://twitter.com/finosfoundation
linkedin: https://www.linkedin.com/company/finosfoundation
acquisitions: []
parents:
- https://www.crunchbase.com/organization/linux-foundation
stockExchange: null
company_type: Non Profit
industries:
- Banking
- Developer Platform
- FinTech
- Finance
- Financial Services
- Information Technology
- Software
- Web Development
github_data:
languages:
- name: JavaScript
value: 49981
color: '#f1e05a'
- name: Shell
value: 155
color: '#89e051'
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
firstWeek: 2021-12-12Z
stars: 44
license: Apache License 2.0
description: cla-bot is a GitHub bot for automation of Contributor Licence Agreements (CLAs).
latest_commit_date: '2022-07-04T16:12:52Z'
latest_commit_link: /finos/cla-bot/commit/21eb6a9e289a1d889bf297949c0fdc53645008a7
release_date: '2019-02-02T15:38:03Z'
release_link: https://github.com/finos/cla-bot/releases
contributors_count: 12
contributors_link: https://github.com/finos/cla-bot/graphs/contributors
repos:
- url: https://github.com/finos/cla-bot
stars: 44
github_start_commit_data:
start_commit_link: /finos/cla-bot/commit/09b7ad7c3d7bd2e02b82222352dcb071989eb6a9
start_date: '2017-04-26T05:22:44Z'
image_data:
fileName: cla-bot.svg
hash: oMBu2EsAAwWatSMbJ4xzmxEzm9boL5i3Co/WOXmAF74=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-12-07T09:34:00.000Z
- item:
name: FINOS Security Scanning
homepage_url: https://github.com/finos/security-scanning
project: incubating
repo_url: https://github.com/finos/security-scanning
logo: finos-security-scanning.svg
crunchbase: https://www.crunchbase.com/organization/finos-foundation
crunchbase_data:
name: FINOS
description: FINOS is a non-profit foundation with Wall Street roots, setting out to build a new open source innovation model for fintech.
num_employees_min: 1
num_employees_max: 10
homepage: https://www.finos.org/
city: Burlingame
region: California
country: United States
twitter: https://twitter.com/finosfoundation
linkedin: https://www.linkedin.com/company/finosfoundation
acquisitions: []
parents:
- https://www.crunchbase.com/organization/linux-foundation
stockExchange: null
company_type: Non Profit
industries:
- Banking
- Developer Platform
- FinTech
- Finance
- Financial Services
- Information Technology
- Software
- Web Development
github_data:
languages:
- name: Python
value: 8020
color: '#3572A5'
- name: Scala
value: 4405
color: '#c22d40'
- name: HTML
value: 3762
color: '#e34c26'
- name: CSS
value: 1696
color: '#563d7c'
- name: C#
value: 1637
color: '#178600'
- name: Shell
value: 1075
color: '#89e051'
- name: Java
value: 646
color: '#b07219'
- name: Rust
value: 485
color: '#dea584'
- name: JavaScript
value: 349
color: '#f1e05a'
- name: Dockerfile
value: 43
color: '#384d54'
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;65;5;2;3;0;1;0;0;1;0;0;0;0;3;4;37;6;4;2;18;4;6
firstWeek: 2021-12-12Z
stars: 4
license: Apache License 2.0
description: How to protect FINOS hosted projects from security threats
latest_commit_date: '2022-12-06T18:08:24Z'
latest_commit_link: /finos/security-scanning/commit/facc5bc777648727b4edde576c2d858f41c160fc
contributors_count: 4
contributors_link: https://github.com/finos/security-scanning/graphs/contributors
repos:
- url: https://github.com/finos/security-scanning
stars: 4
github_start_commit_data:
start_commit_link: /finos/security-scanning/commit/3daa40ad77e8bb6bc97af4169cdeb17fa7fc3259
start_date: '2022-07-05T15:29:01Z'
image_data:
fileName: finos-security-scanning.svg
hash: X08cJZO7n96u1wY6R2k0V4GYuxhwKESgJMJDiHAPY0s=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-12-07T09:34:00.000Z
- item:
name: Open Developer Platform
homepage_url: https://community.finos.org
project: incubating
repo_url: https://github.com/finos/open-developer-platform
logo: open-developer-platform.svg
crunchbase: https://www.crunchbase.com/organization/finos-foundation
crunchbase_data:
name: FINOS
description: FINOS is a non-profit foundation with Wall Street roots, setting out to build a new open source innovation model for fintech.
num_employees_min: 1
num_employees_max: 10
homepage: https://www.finos.org/
city: Burlingame
region: California
country: United States
twitter: https://twitter.com/finosfoundation
linkedin: https://www.linkedin.com/company/finosfoundation
acquisitions: []
parents:
- https://www.crunchbase.com/organization/linux-foundation
stockExchange: null
company_type: Non Profit
industries:
- Banking
- Developer Platform
- FinTech
- Finance
- Financial Services
- Information Technology
- Software
- Web Development
github_data:
languages:
- name: Shell
value: 7145
color: '#89e051'
contributions: 0;10;0;0;0;0;0;0;2;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
firstWeek: 2021-12-12Z
stars: 39
license: Apache License 2.0
description: Delivering open source software development best practices while enforcing security and legal compliance for the financial services industry .
latest_commit_date: '2022-03-17T13:39:43Z'
latest_commit_link: /finos/open-developer-platform/commit/bbfb7232efacb3e5bcdc6e3221d09614a8bd0174
contributors_count: 10
contributors_link: https://github.com/finos/open-developer-platform/graphs/contributors
repos:
- url: https://github.com/finos/open-developer-platform
stars: 39
github_start_commit_data:
start_commit_link: /finos/open-developer-platform/commit/9d2e2b1261637799542bbdeaa58050a79a402e16
start_date: '2018-08-20T12:51:46Z'
image_data:
fileName: open-developer-platform.svg
hash: v4tzFEwiXwGV2wxwU/laU+XGFazmHTqtgOJDjjA2Dzo=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-12-07T09:34:00.000Z
- subcategory:
name: OSS Readiness
items:
- item:
name: CatchIT
homepage_url: https://github.com/finos/CatchIT
project: incubating
repo_url: https://github.com/finos/CatchIT
logo: catchit.svg
crunchbase: https://www.crunchbase.com/organization/finos-foundation
crunchbase_data:
name: FINOS
description: FINOS is a non-profit foundation with Wall Street roots, setting out to build a new open source innovation model for fintech.
num_employees_min: 1