-
-
Notifications
You must be signed in to change notification settings - Fork 7k
/
data.json
2215 lines (2215 loc) · 80.3 KB
/
data.json
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
{
"sponsors": [
{
"name": "Michał Gołkowski",
"image": "https://avatars.githubusercontent.com/u/40803091",
"link": "https://github.com/MixeroTN"
}
],
"technologies": {
".NET": "net",
"C#": "c-1",
"C++": "c-2"
},
"repositories": [
{
"name": "MvvmCross",
"link": "https://github.com/MvvmCross/MvvmCross",
"label": "first-timers-only",
"technologies": [
".NET"
],
"description": "The .NET MVVM framework for cross-platform solutions, including Xamarin.iOS, Xamarin.Android, Windows and Mac."
},
{
"name": "RawCMS",
"link": "https://github.com/arduosoft/RawCMS",
"label": "good first issue",
"technologies": [
".NET"
],
"description": "RawCMS is a headless CMS written in ASP.NET Core, built for developers that embrace API-first technology."
},
{
"name": "Shouldly",
"link": "https://github.com/shouldly/shouldly",
"label": "Jump-In",
"technologies": [
".NET"
],
"description": "Should testing for .NET - the way Asserting Should be!"
},
{
"name": "grok.net",
"link": "https://github.com/Marusyk/grok.net",
"label": "good first issue",
"technologies": [
"C#"
],
"description": "Cross platform .NET grok implementation"
},
{
"name": "osu!",
"link": "https://github.com/ppy/osu",
"label": "good first issue",
"technologies": [
"C#"
],
"description": "Music game. Rhythm is just a click away!"
},
{
"name": "Uno Platform",
"link": "https://github.com/unoplatform/uno",
"label": "good first issue",
"technologies": [
"C#"
],
"description": "OSS project for creating pixel-perfect, single-source C# and XAML apps which run natively on iOS, Android, macOS, Linux and Web via WebAssembly."
},
{
"name": "Cake",
"link": "https://github.com/cake-build/cake",
"label": "Good-first-issue",
"technologies": [
"C#"
],
"description": "Cake (C# Make) is a free and open source cross-platform build automation system with a C# DSL for tasks such as compiling code, copying files and folders, running unit tests, compressing files and building NuGet packages."
},
{
"name": "electron",
"link": "https://github.com/electron/electron",
"label": "good first issue",
"technologies": [
"C++",
"JavaScript"
],
"description": "Build cross platform desktop apps with JavaScript, HTML, and CSS"
},
{
"name": "Godot Engine",
"link": "https://github.com/godotengine/godot",
"label": "good first issue",
"technologies": [
"C++"
],
"description": "2D and 3D cross-platform game engine. Also has C# and Python code."
},
{
"name": "projectM",
"link": "https://github.com/projectM-visualizer/projectm",
"label": "good first issue",
"technologies": [
"C++"
],
"description": "A music visualizer library using OpenGL and GLSL. Has applications using Qt5, SDL, emscripten, iTunes, Kodi."
},
{
"name": "Roc Toolkit",
"link": "https://github.com/roc-streaming/roc-toolkit",
"label": "help-wanted",
"technologies": [
"C++"
],
"description": "A toolkit for real-time audio streaming over the network."
},
{
"name": "tensorflow",
"link": "https://github.com/tensorflow/tensorflow",
"label": "stat:contributions-welcome",
"technologies": [
"C++"
],
"description": "Computation using data flow graphs for scalable machine learning"
},
{
"name": "Yugabyte DB",
"link": "https://github.com/yugabyte/yugabyte-db",
"label": "good first issue",
"technologies": [
"C++"
],
"description": "Distributed SQL database."
},
{
"name": "MoveIt",
"link": "https://github.com/ros-planning/moveit",
"label": "good first issue",
"technologies": [
"C++"
],
"description": "Easy-to-use open source robotics manipulation platform for developing commercial applications, prototyping designs, and benchmarking algorithms."
},
{
"name": "MiniOB",
"link": "https://github.com/oceanbase/miniob",
"label": "good first issue",
"technologies": [
"C++"
],
"description": "MiniOB is a compact database that assists developers in understanding the fundamental workings of a database(main language is Chinese)."
},
{
"name": "F3D",
"link": "https://github.com/f3d-app/f3d",
"label": "good first issue",
"technologies": [
"C++"
],
"description": "Fast and minimalist 3D viewer."
},
{
"name": "Alda",
"link": "https://github.com/alda-lang/alda",
"label": "low-hanging-fruit",
"technologies": [
"Clojure"
],
"description": "A music programming language for musicians. 🎶"
},
{
"name": "dart.dev",
"link": "https://github.com/dart-lang/site-www",
"label": "beginner",
"technologies": [
"Dart"
],
"description": "A website covering Dart language and common libraries, for developers of Dart libraries, web apps, server-side code, and mobile (Flutter) apps."
},
{
"name": "Ecto",
"link": "https://github.com/elixir-ecto/ecto",
"label": "Level:Starter",
"technologies": [
"Elixir"
],
"description": "Ecto is a database wrapper and language integrated query for Elixir"
},
{
"name": "Elixir",
"link": "https://github.com/elixir-lang/elixir",
"label": "Level:Starter",
"technologies": [
"Elixir"
],
"description": "Elixir is a dynamic, functional language designed for building scalable and maintainable applications"
},
{
"name": "CockroachDB",
"link": "https://github.com/cockroachdb/cockroach",
"label": "good first issue",
"technologies": [],
"description": "The Scalable, Survivable, Strongly-Consistent SQL Database"
},
{
"name": "Docker/CLI",
"link": "https://github.com/docker/cli",
"label": "exp/beginner",
"technologies": [
"Go"
],
"description": "The Docker CLI"
},
{
"name": "Dragonfly",
"link": "https://github.com/dragonflyoss/Dragonfly2",
"label": "good first issue",
"technologies": [
"Go"
],
"description": "Provide efficient, stable and secure file distribution and image acceleration based on p2p technology"
},
{
"name": "Helm",
"link": "https://github.com/kubernetes/helm",
"label": "good first issue",
"technologies": [
"Go"
],
"description": "The Kubernetes Package Manager"
},
{
"name": "Hugo",
"link": "https://github.com/gohugoio/hugo",
"label": "GoodFirstIssue",
"technologies": [
"Go"
],
"description": "A Fast and Flexible Static Site Generator built with love in GoLang"
},
{
"name": "Kanister",
"link": "https://github.com/kanisterio/kanister",
"label": "good first issue",
"technologies": [
"Go"
],
"description": "A Data Protection Workflow Management Engine"
},
{
"name": "Kubernetes",
"link": "https://github.com/kubernetes/kubernetes",
"label": "good first issue",
"technologies": [
"Go"
],
"description": "Production-Grade Container Scheduling and Management System"
},
{
"name": "Mattermost",
"link": "https://github.com/mattermost/mattermost-server/issues?utf8=✓&q=is:open+label:\"Up+For+Grabs\"+label:\"Difficulty/1:Easy\"+label:\"Tech/Go\"",
"technologies": [
"Go",
"JavaScript"
],
"description": "Open source Slack-alternative in Golang and React"
},
{
"name": "Moby",
"link": "https://github.com/moby/moby",
"label": "exp/beginner",
"technologies": [
"Go"
],
"description": "Open-source application container engine"
},
{
"name": "Terraform",
"link": "https://github.com/hashicorp/terraform",
"label": "good first issue",
"technologies": [
"Go"
],
"description": "A tool for building, changing, and versioning infrastructure safely and efficiently."
},
{
"name": "TiDB",
"link": "https://github.com/pingcap/tidb",
"label": "for-new-contributors",
"technologies": [
"Go"
],
"description": "A distributed scalable Hybrid Transactional and Analytical Processing (HTAP) database"
},
{
"name": "script",
"link": "https://github.com/bitfield/script",
"label": "good first issue",
"technologies": [
"Go"
],
"description": "A Go library for doing the kind of tasks that shell scripts are good at: reading files, executing subprocesses, counting lines, matching strings, and so on. Beginners are very welcome and will get detailed code review and help through the PR process."
},
{
"name": "httpexpect",
"link": "https://github.com/gavv/httpexpect",
"label": "help-wanted",
"technologies": [
"Go"
],
"description": "End-to-end HTTP and REST API testing for Go."
},
{
"name": "Killgrave",
"link": "https://github.com/friendsofgo/killgrave",
"label": "good first issue",
"technologies": [
"Go"
],
"description": "Simple way to generate mock servers in Go."
},
{
"name": "lxd",
"link": "https://github.com/lxc/lxd",
"label": "easy",
"technologies": [
"Go"
],
"description": "System container and virtual machine manager."
},
{
"name": "PureLB",
"link": "https://gitlab.com/purelb/purelb/-/issues?label_name[]=GoodFirstIssue",
"technologies": [
"Go"
],
"description": "Load-balancer orchestrator for Kubernetes that uses standard Linux networking and routing protocols."
},
{
"name": "containerd",
"link": "https://github.com/containerd/containerd",
"label": "exp/beginner",
"technologies": [
"Go"
],
"description": "Industry-standard container runtime with an emphasis on simplicity, robustness and portability."
},
{
"name": "Meshery",
"link": "https://github.com/layer5io/meshery",
"label": "good first issue",
"technologies": [
"Go"
],
"description": "Meshery, the service mesh management plane."
},
{
"name": "utils",
"link": "https://github.com/kashifkhan0771/utils",
"label": "good first issue",
"technologies": [
"Go"
],
"description": "Common Utilities library for Go"
},
{
"name": "Strongbox",
"link": "https://github.com/strongbox/strongbox",
"label": "good first issue",
"technologies": [
"Java"
],
"description": "Strongbox is an artifact repository manager written in Java."
},
{
"name": "TEAMMATES",
"link": "https://github.com/TEAMMATES/teammates",
"label": "good first issue",
"technologies": [
"Java"
],
"description": "TEAMMATES is a free online tool for managing peer evaluations and other feedback paths of your students."
},
{
"name": "elasticsearch",
"link": "https://github.com/elastic/elasticsearch",
"label": "good first issue",
"technologies": [
"Java"
],
"description": "Open Source, Distributed, RESTful Search Engine."
},
{
"name": "JabRef",
"link": "https://github.com/JabRef/jabref",
"label": "good first issue",
"technologies": [
"Java"
],
"description": "Desktop application for managing literature references using modern Java features including JavaFX. Dedicated to code quality and constructive feedback: Each Pull Request is reviewed by two developers to provide high-quality feedback and to ensure high quality of new contributions."
},
{
"name": "Wikimedia Commons Android App",
"link": "https://github.com/commons-app/apps-android-commons",
"label": "good first issue",
"technologies": [
"Java"
],
"description": "Allows users to upload pictures from their Android phone/tablet to Wikimedia Commons."
},
{
"name": "XWiki",
"link": "https://jira.xwiki.org/issues/?jql=labels-%3D-Onboarding",
"technologies": [
"Java"
],
"description": "XWiki is a free wiki software platform written in Java with a design emphasis on extensibility. Beginners should follow the onboarding wiki."
},
{
"name": "zerocode",
"link": "https://github.com/authorjapps/zerocode",
"label": "good first issue",
"technologies": [
"Java"
],
"description": "API Automation without coding, easy JSON response assertions, Testing REST, SOAP, Kafka and Java/DB APIs, CI/Jenkins Friendly."
},
{
"name": "Images-to-PDF",
"link": "https://github.com/Swati4star/Images-to-PDF",
"label": "good first issue",
"technologies": [
"Java"
],
"description": "An android app to convert images to PDF file."
},
{
"name": "Trino (formerly Presto SQL)",
"link": "https://github.com/trinodb/trino",
"label": "good first issue",
"technologies": [
"Java"
],
"description": "A distributed SQL query engine for big data. Ask for guidance on project's Slack."
},
{
"name": "appsmith",
"link": "https://github.com/appsmithorg/appsmith",
"label": "good first issue",
"technologies": [
"Java"
],
"description": "Drag & Drop internal tool builder"
},
{
"name": "Codename One",
"link": "https://github.com/codenameone/CodenameOne",
"label": "good first issue",
"technologies": [
"Java"
],
"description": "Cross-platform mobile app development framework for Java developers"
},
{
"name": "DSA",
"link": "https://github.com/abhishektripathi66/DSA",
"label": "good first issue",
"technologies": [
"Java"
],
"description": "DSA questions practising repo for Java developers"
},
{
"name": "name-suggestion-index",
"link": "https://github.com/osmlab/name-suggestion-index",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "Canonical common brand names for OpenStreetMap"
},
{
"name": "iD",
"link": "https://github.com/openstreetmap/iD",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "The easy-to-use OpenStreetMap editor in JavaScript."
},
{
"name": "PouchDB",
"link": "https://github.com/pouchdb/pouchdb",
"label": "help-wanted",
"technologies": [
"JavaScript"
],
"description": "PouchDB is a pocket-sized database."
},
{
"name": "Leaflet",
"link": "https://github.com/Leaflet/Leaflet",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "JavaScript library for mobile-friendly interactive maps."
},
{
"name": "AVA",
"link": "https://github.com/sindresorhus/ava",
"label": "good-for-beginner",
"technologies": [
"JavaScript"
],
"description": "Futuristic test runner."
},
{
"name": "Kinto.js",
"link": "https://github.com/Kinto/kinto.js",
"label": "easy-pick",
"technologies": [
"JavaScript"
],
"description": "An offline-first JavaScript client leveraging the Kinto API for remote data synchronization."
},
{
"name": "ESLint",
"link": "https://github.com/eslint/eslint",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "A fully pluggable tool for identifying and reporting on patterns in JavaScript."
},
{
"name": "Tessel 2 CLI",
"link": "https://github.com/tessel/t2-cli",
"label": "contribution-starter",
"technologies": [
"JavaScript"
],
"description": "Command line interface to Tessel 2."
},
{
"name": "Ember.js",
"link": "https://github.com/emberjs/ember.js",
"label": "Good-for-New-Contributors",
"technologies": [
"JavaScript"
],
"description": "A JavaScript framework for creating ambitious web applications."
},
{
"name": "Ember.js Data",
"link": "https://github.com/emberjs/data",
"label": "Good-for-New-Contributors",
"technologies": [
"JavaScript"
],
"description": "A data persistence library for Ember.js."
},
{
"name": "freeCodeCamp",
"link": "https://github.com/freeCodeCamp/freeCodeCamp",
"label": "first-timers-only",
"technologies": [
"JavaScript"
],
"description": "Open source codebase and curriculum. Learn to code and help nonprofits."
},
{
"name": "Ghost",
"link": "https://github.com/TryGhost/Ghost",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "Just a blogging platform"
},
{
"name": "eslint-plugin-unicorn",
"link": "https://github.com/sindresorhus/eslint-plugin-unicorn",
"label": "good-for-beginner",
"technologies": [
"JavaScript"
],
"description": "Awesome ESLint rules."
},
{
"name": "Hyper",
"link": "https://github.com/zeit/hyper",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "JS/HTML/CSS Terminal"
},
{
"name": "API-pull-with-JavaScript",
"link": "https://github.com/AliBasboga/APIExampleWithExpress.git",
"label": "API-pull-and-use",
"technologies": [
"JavaScript"
],
"description": "API data extraction and delivery to the user to present."
},
{
"name": "HMPL",
"link": "https://github.com/hmpl-lang/hmpl",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "Template language for displaying UI from server to client."
},
{
"name": "Moment.js",
"link": "https://github.com/moment/moment",
"label": "Up-For-Grabs",
"technologies": [
"JavaScript"
],
"description": "A lightweight JavaScript date library for parsing, validating, manipulating, and formatting dates."
},
{
"name": "serverless",
"link": "https://github.com/serverless/serverless",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "The Serverless Framework"
},
{
"name": "React",
"link": "https://github.com/facebook/react",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "A declarative, efficient, and flexible JavaScript library for building user interfaces."
},
{
"name": "React Native",
"link": "https://github.com/facebook/react-native",
"label": "Good-first-issue",
"technologies": [
"JavaScript"
],
"description": "A framework for building native apps with React."
},
{
"name": "React server",
"link": "https://github.com/redfin/react-server",
"label": "good-first-contribution",
"technologies": [
"JavaScript"
],
"description": "React framework with server render for blazing fast page load and seamless transitions between pages in the browser."
},
{
"name": "Yarn",
"link": "https://github.com/yarnpkg/yarn",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "Fast, reliable, and secure dependency management."
},
{
"name": "pixi.js",
"link": "https://github.com/pixijs/pixi.js",
"label": "🤩 Good First PR",
"technologies": [
"JavaScript"
],
"description": "A 2D JavaScript Renderer"
},
{
"name": "Next.js",
"link": "https://github.com/zeit/next.js",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "A minimalistic framework for universal server-rendered React applications"
},
{
"name": "Semantic-UI-React",
"link": "https://github.com/Semantic-Org/Semantic-UI-React",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "The official React integration for Semantic UI."
},
{
"name": "Botpress",
"link": "https://github.com/botpress/botpress",
"label": "contributor-friendly",
"technologies": [
"JavaScript"
],
"description": "The only sane way to build great bots."
},
{
"name": "Video.js",
"link": "https://github.com/videojs/video.js",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "The player framework"
},
{
"name": "stryker",
"link": "https://github.com/stryker-mutator/stryker",
"label": "👶 Good first issue",
"technologies": [
"JavaScript"
],
"description": "The JavaScript mutation testing framework"
},
{
"name": "Reddit Enhancement Suite",
"link": "https://github.com/honestbleeps/Reddit-Enhancement-Suite",
"label": "help-wanted",
"technologies": [
"JavaScript"
],
"description": "A browser extension to enhance the Reddit browsing experience."
},
{
"name": "Brave Browser",
"link": "https://github.com/brave/brave-browser",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "Desktop browser for macOS, Windows, and Linux."
},
{
"name": "Fastify",
"link": "https://github.com/fastify/fastify",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "Fast and low overhead web framework, for Node.js."
},
{
"name": "Node.js core",
"link": "https://github.com/nodejs/node",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "JavaScript runtime built on Chrome's V8 JavaScript engine"
},
{
"name": "Jest",
"link": "https://github.com/facebook/jest",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "A complete and easy to set up JavaScript testing solution."
},
{
"name": "p5.js",
"link": "https://github.com/processing/p5.js",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "p5.js is a client-side JS platform that empowers artists, designers, students, and anyone to learn to code and express themselves creatively on the web."
},
{
"name": "NativeScript",
"link": "https://github.com/NativeScript/NativeScript",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "NativeScript is an open source framework for building truly native mobile apps with JavaScript. Use web skills, like Angular and Vue.js, FlexBox and CSS, and get native UI and performance on iOS and Android."
},
{
"name": "Gatsby.js",
"link": "https://github.com/gatsbyjs/gatsby",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "Build blazing fast, modern apps and websites with React."
},
{
"name": "Vue.js",
"link": "https://github.com/vuejs/vue",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "The Progressive JavaScript Framework."
},
{
"name": "Check It Out",
"link": "https://github.com/jwu910/check-it-out",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "Check It Out is an ncurses-like CLI to let the user interactively navigate and select a git branch to check out."
},
{
"name": "nuclear",
"link": "https://github.com/nukeop/nuclear",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "Multiplatform music player that streams from free sources."
},
{
"name": "material-ui",
"link": "https://github.com/mui-org/material-ui",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "React components for faster and easier web development. Build your own design system, or start with Material Design."
},
{
"name": "Meteor",
"link": "https://github.com/meteor/meteor",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "Meteor is an ultra-simple environment for building modern web applications."
},
{
"name": "Mocha",
"link": "https://github.com/mochajs/mocha",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "Javascript test framework for Node.js and the browser."
},
{
"name": "Babel",
"link": "https://github.com/babel/babel",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "A compiler for writing next generation JavaScript."
},
{
"name": "React-content-loader",
"link": "https://github.com/danilowoz/create-content-loader",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "Tool to create your own react-content-loader easily."
},
{
"name": "netlify-cms",
"link": "https://github.com/netlify/netlify-cms",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "Open source content management for your git workflow."
},
{
"name": "altair",
"link": "https://github.com/imolorhe/altair",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "A beautiful feature-rich GraphQL Client for all platforms."
},
{
"name": "Video Hub App",
"link": "https://github.com/whyboris/Video-Hub-App",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "Angular & Electron app for browsing and searching videos on your PC."
},
{
"name": "Ancient Beast",
"link": "https://github.com/FreezingMoon/AncientBeast",
"label": "easy",
"technologies": [
"JavaScript"
],
"description": "Turn based strategy game where you 3d print a squad of creatures with unique abilities in order to defeat your enemies."
},
{
"name": "ramda-adjunct",
"link": "https://github.com/char0n/ramda-adjunct",
"label": "help-wanted",
"technologies": [
"JavaScript"
],
"description": "Ramda Adjunct is the most popular and most comprehensive set of functional utilities for use with Ramda, providing a variety of useful, well tested functions with excellent documentation."
},
{
"name": "SirixDB",
"link": "https://github.com/sirixdb/sirix-svelte-front-end",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "A Svelte/Sapper based web front-end for SirixDB, which is a versioned NoSQL document store (XML and JSON) written in Java."
},
{
"name": "json-editor",
"link": "https://github.com/json-editor/json-editor",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "JSON Schema Based Editor. JSON Editor takes a JSON Schema and uses it to generate an HTML form. It has full support for JSON Schema version 3 and 4 and can integrate with several popular CSS frameworks (bootstrap, spectre, tailwind)."
},
{
"name": "Habitica",
"link": "https://github.com/HabitRPG/habitica",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "Habitica is a gamified task manager, webapp and android/ios app, really wonderful atmosphere. Guidance for contributing here (mongo, express, vue, node stack for webapp)"
},
{
"name": "reactjs.org",
"link": "https://github.com/reactjs/reactjs.org",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "The documenation website for reactjs"
},
{
"name": "Vest",
"link": "https://github.com/ealush/vest",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "Validations framework inspired by unit testing frameworks."
},
{
"name": "Hoppscotch",
"link": "https://github.com/hoppscotch/hoppscotch",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "A free, fast and beautiful API request builder."
},
{
"name": "Predator",
"link": "https://github.com/Zooz/predator",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "A powerful open-source platform for load testing APIs."
},
{
"name": "OpenCalc",
"link": "https://github.com/Darkempire78/OpenCalc",
"label": "good first issue",
"technologies": [
"Kotlin"
],
"description": "A simple and beautiful calculator for Android."
},
{
"name": "Time to Leave",
"link": "https://github.com/thamara/time-to-leave",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "Working hours time tracker app based on Electron and Javascript."
},
{
"name": "cypress",
"link": "https://github.com/cypress-io/cypress",
"label": "good first issue",
"technologies": [
"JavaScript"
],
"description": "Fast, easy and reliable testing for anything that runs in a browser."