-
Notifications
You must be signed in to change notification settings - Fork 176
Expand file tree
/
Copy pathArticles.data.ts
More file actions
1437 lines (1435 loc) · 58.3 KB
/
Articles.data.ts
File metadata and controls
1437 lines (1435 loc) · 58.3 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
990
991
992
993
994
995
996
997
998
999
1000
import { Resource, ResourceCategory, ResourceType } from './Ecosystem';
const articles: Array<Resource> = [
{
link: 'https://dev.to/this-is-learning/javascript-frameworks-and-metagaming-pb5',
title: 'JavaScript Frameworks and Metagaming',
description:
'Ryan provides a post-1.0 release analysis and equates framework creation to metagaming.',
author: 'Ryan Carniato',
author_url: 'https://dev.to/ryansolid',
keywords: ['metagaming', 'creating'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1625584447000,
},
{
link: 'https://dev.to/this-is-learning/javascript-framework-todomvc-size-comparison-504f',
title: 'JavaScript Framework TodoMVC Size Comparison',
description: 'Size in JavaScript Frameworks is actually a pretty tricky thing to estimate.',
author: 'Ryan Carniato',
author_url: 'https://dev.to/ryansolid',
keywords: ['bundles', 'scaling', 'size'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1634253475000,
},
{
link: 'https://www.infoq.com/news/2021/07/solid-js-released-first/',
title: 'Performance-Focused Reactive UI Framework Solid.JS Releases First Major Version',
description:
'InfoQ covers SolidJS initial 1.0 release and provides an example of its reactivity.',
author: 'Bruno Couriol',
author_url: 'https://www.infoq.com/profile/Bruno-Couriol/',
keywords: ['infoq', 'education'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1625529600000,
},
{
link: 'https://medium.com/@ryansolid/solidjs-the-tesla-of-javascript-ui-frameworks-6a1d379bc05e',
title: 'SolidJS: The Tesla of JavaScript Frameworks?',
description: 'Tech built for Economy can be used for Performance.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1603098166557,
},
{
link: 'https://indepth.dev/the-journey-to-isomorphic-rendering-performance',
title: 'The Journey to Isomorphic JavaScript Performance',
description: 'Finding the right SSR solution for Solid.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1602756000000,
},
{
link: 'https://dev.to/ryansolid/why-i-m-not-a-fan-of-single-file-components-3bfl',
title: 'Why I am not a fan of Single File Components',
description: "Exploring the advantages of Solid's templates.",
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1600667167000,
},
{
link: 'https://levelup.gitconnected.com/how-we-wrote-the-fastest-javascript-ui-framework-again-db097ddd99b6',
title: 'How we wrote the Fastest JavaScript Framework, Again!',
description: 'This time we conquered the server.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1600421218440,
},
{
link: 'https://areknawo.com/solid-the-best-javascript-ui-library/',
title: 'Solid - The best JavaScript UI library?',
description: 'Highlights the qualities that make Solid a powerful solution.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1599075919000,
},
{
link: 'https://indepth.dev/posts/1289/solidjs-reactivity-to-rendering',
title: 'SolidJS: Reactivity to Rendering',
description:
"An in depth look at building Solid's reactive renderer, piece by piece, from the ground up.",
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1592906400000,
},
{
link: 'https://dev.to/lloyds-digital/comparing-reactivity-models-react-vs-vue-vs-svelte-vs-mobx-vs-solid-29m8',
title: 'Comparing reactivity models - React vs Vue vs Svelte vs MobX vs Solid vs Redux',
description: 'Compares popular and well known frameworks through a basic todo app.',
author: 'Mateo Hrastnik',
author_url: 'https://github.com/hrastnik',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1596527613000,
},
{
link: 'https://areknawo.com/best-react-like-jsx-ui-libraries-in-2020/',
title: 'Best React-like JSX UI Libraries in 2020',
description: 'Presents 4 viable React alternatives.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1595534217000,
},
{
link: 'https://indepth.dev/exploring-the-state-of-reactivity-patterns-in-2020/',
title: 'Exploring Reactivity Patterns in 2020',
description: "What's the latest trend in the frontend?",
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1591092000000,
},
{
link: 'https://dev.to/ryansolid/why-solidjs-do-we-need-another-js-ui-library-1mdc',
title: 'Why SolidJS: Do We Really Need Another JS UI Library',
description: "Ryan's personal journey creating SolidJS.",
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1590995267000,
},
{
link: 'https://dev.to/ryansolid/thinking-granular-how-is-solidjs-so-performant-4g37',
title: 'Thinking Granular: How is SolidJS so Performant?',
description: "An in-deph 12 minute read that explains Solid's methodology.",
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1586983522000,
},
{
link: 'https://levelup.gitconnected.com/a-solid-realworld-demo-comparison-8c3363448fd8',
title: 'A Solid RealWorld Demo Comparison of JavaScript Frameworks',
description: 'How does Solid perform in a larger application?',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1582790369043,
},
{
link: 'https://levelup.gitconnected.com/designing-solidjs-abstraction-66d8c63fa7d1?source=friends_link&sk=9cc520bbba3d97872a78081a8ab7b259',
title: 'Designing SolidJS: Abstraction',
description: 'Understanding both the power and cost of abstraction.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1580976731118,
},
{
link: 'https://itnext.io/designing-solidjs-suspense-f4e92c625cb5?source=friends_link&sk=f06f93d28632daba59048ed3d6d6b0a5',
title: 'Designing SolidJS: Suspense',
description: "React isn't the only library that stops time.",
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1575360287522,
},
{
link: 'https://medium.com/@ryansolid/designing-solidjs-jsx-50ee2b791d4c?source=friends_link&sk=ef3d7ada15b50a6b5b7f5aee2cb8f952',
title: 'Designing SolidJS: JSX',
description:
'How is it that the syntax born of the Virtual DOM is also secretly the best syntax for Reactive UI libraries?',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1575268127582,
},
{
link: 'https://medium.com/javascript-in-plain-english/designing-solidjs-immutability-f1e46fe9f321?source=friends_link&sk=912e32c63353ff0e084630bf3b63a8b1',
title: 'Designing SolidJS: Immutability',
description: 'Can Reactive State Management be both Immutable and also the most performant?',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1574066462982,
},
{
link: 'https://dev.to/atfzl/understanding-solid-jsx-584p',
title: 'Understanding Solid: JSX',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1574717523000,
},
{
link: 'https://dev.to/atfzl/understanding-solid-reactivity-basics-39kk',
title: 'Understanding Solid: Reactivity Basics',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1570724447000,
},
{
link: 'https://medium.com/@ryansolid/designing-solidjs-components-8f1ebb88d78b?source=friends_link&sk=cac89d1679d8be2c7bf2b303fabd153c',
title: 'Designing SolidJS: Components',
description: 'Exploring Solid\'s "Vanishing" Components',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1573776889202,
},
{
link: 'https://medium.com/@ryansolid/designing-solidjs-reactivity-75180a4c74b4?source=friends_link&sk=dbb9dd46a2e902c199ad3d5c7aeb1566',
title: 'Designing SolidJS: Reactivity',
description: 'Finding the right reactivity model for Solid.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1568843075544,
},
{
link: 'https://medium.com/@ryansolid/designing-solidjs-dualities-69ee4c08aa03?source=friends_link&sk=161ddd70db4fca50d6f33b6d53056d36',
title: 'Designing SolidJS: Dualities',
description: 'How exploring opposites can help us redefine the whole problem space.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1567481829245,
},
{
link: 'https://medium.com/@ryansolid/how-we-wrote-the-fastest-javascript-ui-frameworks-a96f2636431e',
title: 'How we wrote the Fastest JavaScript UI Frameworks',
description: 'How Solid topped the JS Framework Benchmark.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1564115293877,
},
{
link: 'https://levelup.gitconnected.com/finding-fine-grained-reactive-programming-89741994ddee?source=friends_link&sk=31c66a70c1dce7dd5f3f4229423ad127',
title: 'Finding Fine Grained Reactive Programming',
description: "Introduction to the inner workings of Solid's Reactive system.",
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1561960861096,
},
{
link: 'https://medium.com/better-programming/the-real-cost-of-ui-components-6d2da4aba205?source=friends_link&sk=a412aa18825c8424870d72a556db2169',
title: 'The Real Cost of UI Components',
description: 'Comparison of the cost of Components in different UI Libraries.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1560955215263,
},
{
link: 'https://medium.com/@ryansolid/the-fastest-way-to-render-the-dom-e3b226b15ca3?source=friends_link&sk=5ae1688dde789e46cecf5c976e708da5',
title: 'The Fastest Way to Render the DOM',
description: 'Comparison of all Solid Renderers against the Fastest Libraries in the World.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1559107533103,
},
{
link: 'https://medium.com/@ryansolid/javascript-ui-compilers-comparing-svelte-and-solid-cbcba2120cea',
title: 'JavaScript UI Compilers: Comparing Svelte and Solid',
description: 'A closer look at precompiled UI libraries',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
type: ResourceType.Article,
keywords: [''],
categories: [ResourceCategory.Educational],
published_at: 1557807639966,
},
{
link: 'https://levelup.gitconnected.com/building-a-simple-javascript-app-with-solid-ff17c8836409',
title: 'Building a Simple JavaScript App with Solid',
description: 'Dissecting building TodoMVC with Solid.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1554809461904,
},
{
link: 'https://levelup.gitconnected.com/solid-the-best-javascript-ui-library-youve-never-heard-of-297b22848ac1?source=friends_link&sk=d61fc9352b4a98c6c9f5f6bd2077a722',
title: 'Solid — The Best JavaScript UI Library You’ve Never Heard Of',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1554453079625,
},
{
link: 'https://medium.com/@ryansolid/what-every-javascript-framework-could-learn-from-react-1e2bbd9feb09?source=friends_link&sk=75b3f6f90eecc7d210814baa2d5ab52c',
title: 'What Every JavaScript Framework Could Learn from React',
description: 'The lessons Solid learned from React.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1553646091290,
},
{
link: 'https://medium.com/js-dojo/react-hooks-has-react-jumped-the-shark-c8cf04e246cf?source=friends_link&sk=a5017cca813ea970b480cc44afb32034',
title: 'React Hooks: Has React Jumped the Shark?',
description: 'Comparison of React Hooks to Solid.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1551338947894,
},
{
link: 'https://medium.com/@ryansolid/how-i-wrote-the-fastest-javascript-ui-framework-37525b42d6c9?source=friends_link&sk=8eb9387a535a306d1eb96f7ce88c4db5',
title: 'How I wrote the Fastest JavaScript UI Framework',
description: "The key to Solid's performance.",
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1549778800718,
},
{
link: 'https://medium.com/@ryansolid/b-y-o-f-part-5-js-frameworks-in-2019-deb9c4d3e74',
title: 'Part 5: JS Frameworks in 2019',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1548919406928,
},
{
link: 'https://medium.com/@ryansolid/b-y-o-f-part-4-rendering-the-dom-753657689647',
title: 'Part 4: Rendering the DOM',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1548328281275,
},
{
link: 'https://medium.com/@ryansolid/b-y-o-f-part-3-change-management-in-javascript-frameworks-6af6e436f63c',
title: 'Part 3: Change Management in JavaScript Frameworks',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1546555117530,
},
{
link: 'https://medium.com/@ryansolid/b-y-o-f-part-2-web-components-as-containers-85e04a7d96e9',
title: 'Part 2: Web Components as Containers',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1542710478949,
},
{
link: 'https://medium.com/@ryansolid/b-y-o-f-part-1-writing-a-js-framework-in-2018-b02a41026929',
title: 'Part 1: Writing a JS Framework in 2018',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1541869780189,
},
{
link: 'https://dev.to/ryansolid/jsx-is-not-hyperscript-61i',
title: 'JSX is not HyperScript',
description: 'Setting the story straight between JSX and HS.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1588404911000,
},
{
link: 'https://dev.to/this-is-learning/learning-to-appreciate-react-server-components-49ka',
title: 'Learning to Appreciate React Server Components',
description: 'A deep dive into the evolution and future of React Server Components.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1617212767000,
},
{
link: 'https://dev.to/ryansolid/5-ways-solidjs-differs-from-other-js-frameworks-1g63',
title: '5 Ways SolidJS Differs from Other JS Frameworks',
description: 'A deep dive into the evolution and future of React Server Components.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: ['react', 'vue', 'svelte'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1611601719000,
},
{
link: 'https://dev.to/ryansolid/a-hands-on-introduction-to-fine-grained-reactivity-3ndf',
title: 'A Hands-on Introduction to Fine-Grained Reactivity',
description: 'Learn fine-grained reactivity by specific examples with Ryan',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1612885016000,
},
{
link: 'https://dev.to/ryansolid/building-a-reactive-library-from-scratch-1i0p',
title: 'Building a Reactive Library from Scratch',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1613661656000,
},
{
link: 'https://dev.to/this-is-learning/is-0kb-of-javascript-in-your-future-48og',
title: 'Is 0kb of JavaScript in your Future?',
description: 'Thoughts on a 0kb JS world and various approaches.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1620052032000,
},
{
link: 'https://dev.to/ryansolid/server-rendering-in-javascript-optimizing-performance-1jnk',
title: 'Server Rendering in JavaScript: Optimizing Performance',
description: 'Ryan discusses his learning process in topics of perf and optimization.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1614267281000,
},
{
link: 'https://dev.to/this-is-learning/components-are-pure-overhead-hpm',
title: 'Components are Pure Overhead',
description: 'An analysis of components and the future of Component-Less.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1620666795000,
},
{
link: 'https://dev.to/this-is-learning/two-years-of-writing-about-designing-javascript-frameworks-2018-2020-3ha5',
title: 'Two Years of Writing about Designing JavaScript Frameworks (2018-2020)',
description: 'Reflections on building Solid.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1621434498000,
},
{
link: 'https://dev.to/this-is-learning/what-the-hell-is-reactive-programming-anyway-31p5',
title: 'What the hell is Reactive Programming anyway?',
description: 'A helpful walkthrough of reactivity.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [''],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1616487018000,
},
{
link: 'https://dev.to/this-is-learning/5-places-solidjs-is-not-the-best-5019',
title: '5 Places SolidJS is not the Best',
description: 'A candid review of limitations and benefits of Solid.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: ['update'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1617726240000,
},
{
link: 'https://dev.to/ryansolid/solid-update-march-2021-1jj6',
title: 'Solid Update: March 2021',
description: 'A Pre-1.0 release summary and description of the work completed to date.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: ['update'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1617004918000,
},
{
link: 'https://blog.openreplay.com/solid-vs-react-the-fastest-vs-the-most-popular-ui-library',
title: 'Solid vs React - the Fastest VS the Most Popular UI Library',
description:
'An article presented by OpenReplay discussing the differences between React and Solid.',
author: 'Arek Nawo',
author_url: 'https://blog.openreplay.com/authors/arek-nawo',
keywords: ['react', 'solid', 'comparison'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1624838400000,
},
{
link: 'https://dev.to/trusktr/a-few-reasons-why-i-love-solid-js-4036',
title: 'A few reasons why I love Solid.js',
description: 'Joe walks through just a few things that he believes make Solid amazing.',
author: 'Joe Pea',
author_url: 'https://blog.openreplay.com/authors/arek-nawo',
keywords: ['love', 'lume'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1625423335000,
},
{
link: 'https://codechips.me/solidjs-first-look/',
title: 'SolidJS - a first look',
description: 'Ilia takes SolidJS for a spin and compare it to Svelte in terms of DevX',
author: 'Ilia Mikhailov',
author_url: 'https://codechips.me/',
keywords: ['mikhailov', 'svelte', 'codechips', 'transitions'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1626739200000,
},
{
link: 'https://javascript.plainenglish.io/javascript-frameworks-performance-comparison-2020-cd881ac21fce',
title: 'JavaScript Frameworks, Performance Comparison 2020',
description: 'The ultimate performance battle between JavaScript frameworks.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1608552197675,
},
{
link: 'https://www.infoworld.com/article/3626348/solidjs-creator-javascript-innovation-isnt-slowing-down.html',
title: 'SolidJS creator: JavaScript innovation isn’t slowing down',
description:
'As Solid marks its 1.0 release, creator Ryan Carniato discusses the origins of the framework.',
author: 'Matthew Tyson',
author_url: 'https://www.infoworld.com/author/Matthew-Tyson/',
keywords: [],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1627304400000,
},
{
link: 'https://dev.to/ryansolid/introducing-the-solidjs-ui-library-4mck',
title: 'Introducing the SolidJS UI Library',
description: 'Introduction article to Solid written in March 2020.',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: [],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1585189369000,
},
{
link: 'https://css-tricks.com/introduction-to-the-solid-javascript-library/',
title: 'Introduction to the Solid JavaScript Library',
description: 'CSS Tricks author Charlie Gerard intros users to Solid.',
author: 'Charlie Gerard',
author_url: 'https://css-tricks.com/author/charliegerard/',
keywords: [],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1629815450000,
},
{
link: 'https://dev.to/marcinwosinek/series/14003',
title: 'SolidJS Learning Series',
description: 'A 4 part series ranging topics such as setup, i18n and building with esbuild.',
author: 'Marcin Wosinek',
author_url: 'https://dev.to/marcinwosinek',
keywords: ['learning', 'rosetta', 'esbuild'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1628532062000,
},
{
link: 'https://dev.to/canburaks/introduction-to-solidjs-and-reactive-primitives-1o6h',
title: 'Introduction to SolidJS and Reactive Primitives',
description: "Walks new users through reactivitiy and Solid's core primitives.",
author: 'Can Burak Sofyalioglu',
author_url: 'https://dev.to/canburaks',
keywords: ['learning', 'primitives'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1633545291000,
},
{
link: 'https://www.cbsofyalioglu.com/code/adonisjs-solidjs/',
title: 'Using SolidJS in AdonisJS App',
description:
'This blog post shows how to integrate SolidJS frontend library with AdonisJS backend framework.',
author: 'Can Burak Sofyalioglu',
author_url: 'https://dev.to/canburaks',
keywords: ['adonis'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1634927260000,
},
{
link: 'https://www.cbsofyalioglu.com/code/styling-and-control-flow-in-solidj/',
title: 'Exploring SolidJS – Styling and Control Flow',
description: 'Explores styling and control flow in SolidJS.',
author: 'Can Burak Sofyalioglu',
author_url: 'https://dev.to/canburaks',
keywords: ['control flow', 'styling'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1634927260000,
},
{
link: 'https://dev.to/lexlohr/testing-your-solidjs-code-2gfh',
title: 'Testing your Solid.js code with jest',
description: 'An interesting guide on different testing practices for Solid.',
author: 'Alex Lohr',
author_url: 'https://github.com/atk',
keywords: ['solid-jest', 'ts-jest', 'jest', 'testing'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational, ResourceCategory.Testing],
published_at: 1634241650000,
},
{
link: 'https://dev.to/lexlohr/testing-solidjs-code-beyond-jest-39p',
title: 'Testing your Solid.js code beyond jest',
description:
'A follow up article extending the conversation of testing Solid further beyond Jest.',
author: 'Alex Lohr',
author_url: 'https://github.com/atk',
keywords: ['solid-jest', 'ts-jest', 'jest', 'testing'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational, ResourceCategory.Testing],
published_at: 1635095541000,
},
{
link: 'https://blog.logrocket.com/introduction-solidjs/',
title: 'Introduction to SolidJS',
description: 'An introduction to the SolidJS library.',
author: 'Iniubong Obonguko (LockRocket)',
author_url: 'https://blog.logrocket.com/author/iniubongobonguko/',
keywords: ['introduction'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1636574110000,
},
{
link: 'https://dev.to/this-is-learning/understanding-transitional-javascript-apps-27i2',
title: 'Understanding Transitional JavaScript Apps',
description: 'Transitional JavaScript Apps? What?',
author: 'Ryan Carniato',
author_url: 'https://dev.to/ryansolid',
keywords: ['transitional', 'apps', 'spa', 'mpa'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1636730779000,
},
{
link: 'https://dev.to/pabloabc/felte-an-extensible-form-library-for-solid-4cde?signin=true',
title: 'Felte: An extensible form library for Solid',
description:
'Arguably one of the most common problems front-end developers need to solve is form handling. Discusses Felte + Solid',
author: 'Pablo Berganza',
author_url: 'https://dev.to/pabloabc',
keywords: ['forms', 'felte', 'form', 'input'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1639018743000,
},
{
link: 'https://blog.logrocket.com/styling-solidjs-applications-using-tailwind-css/',
title: 'Styling SolidJS applications using Tailwind CSS',
description: 'Learn about Tailwind CSS and SolidJS and how to use them together effecitvely.',
author: 'Iniubong Obonguko',
author_url: 'https://blog.logrocket.com/author/iniubongobonguko/',
keywords: ['tailwind', 'ui', 'styling', 'ui'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1639018743000,
},
{
link: 'https://dev.to/johncarroll/awesome-forms-with-solidjs-18gi',
title: 'Awesome Forms with Solidjs',
description: 'Build a form system with Rx controls package.',
author: 'John Carroll',
author_url: 'https://dev.to/johncarroll',
keywords: ['forms', 'ui'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1619896162000,
},
{
link: 'https://sabe.io/tutorials/getting-started-with-solid',
title: 'Getting Started With Solid',
description:
'In this tutorial, you will learn more about Solid, how to get started with a basic app, and learn about the basics of how it works.',
author: 'Alan Morel',
author_url: 'https://sabe.io/alanmorel',
keywords: ['started', 'learning'],
official: false,
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1640938154000,
},
{
link: 'https://blog.logrocket.com/solidjs-vs-react/',
title: 'SolidJS vs. React: Comparing declarative UI libraries',
description:
'Uncovers the similarities and differences between React/Solid to enable you to decide which one works best for your use case.',
author: 'Atharva Deosthale',
author_url: 'https://blog.logrocket.com/author/atharvadeosthale/',
keywords: ['declarative', 'ui', 'choice'],
official: false,
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1642791979000,
},
{
link: 'https://typeofnan.dev/solid-js-feels-like-what-i-always-wanted-react-to-be/',
title: 'Solid.js feels like what I always wanted React to be',
description:
'Nick describes what makes Solid.js special to him and compares it to his React experience.',
author: 'Nick Scialli',
author_url: 'https://typeofnan.dev/',
keywords: ['react', 'compare'],
official: false,
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1645984025000,
},
{
link: 'https://www.cbsofyalioglu.com/code/solidjs-and-reactive-primitives/',
title: 'Exploring SolidJS - Reactive Primitives',
description:
'SolidJS is a true reactive library that allows you to use JSX for your frontend projects.',
author: 'Can Burak Sofyalıoğlu',
author_url: 'https://www.cbsofyalioglu.com/',
keywords: ['adonis', 'back-end', 'framework'],
official: false,
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1646175016000,
},
{
link: 'https://www.cbsofyalioglu.com/code/adonisjs-solidjs/',
title: 'SolidJS Setup in AdonisJS',
description:
'This blog post shows how to integrate SolidJS frontend library with AdonisJS backend framework.',
author: 'Can Burak Sofyalıoğlu',
author_url: 'https://www.cbsofyalioglu.com/',
keywords: ['adonis', 'back-end', 'framework'],
official: false,
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1646175016000,
},
{
link: 'https://hackernoon.com/meet-solid-a-lightweight-javascript-ui-library-that-is-gaining-in-popularity',
title: 'Meet Solid: A Lightweight JavaScript UI Library that is Gaining in Popularity',
description:
'SolidJS has been gaining traction as a UI library for building web applications that are extremely fast and small.',
author: 'Phong Nguyen',
author_url: 'https://hackernoon.com/u/phongnn',
keywords: ['solid', 'learn', 'framework', 'hackernoon'],
official: false,
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1648409350000,
},
{
link: 'https://hackernoon.com/state-management-in-solidjs-applications',
title: 'State Management in SolidJS Applications',
description:
'State management is usually one of the most important problems that you need to tackle when developing a frontend application.',
author: 'Phong Nguyen',
author_url: 'https://hackernoon.com/u/phongnn',
keywords: ['solid', 'state management', 'state', 'hackernoon'],
official: false,
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1650697301000,
},
{
link: 'https://dev.to/taw/open-source-adventures-episode-43-solidjs-1f32',
title: 'Open Source Adventures: Episode 43: SolidJS',
description:
'Tomasz delves into SolidJS basics. Part of a series of SolidJS entries that delve into less trivial examples.',
author: 'Tomasz Wegrzanowski',
author_url: 'https://dev.to/taw',
keywords: ['solid', 'learning', 'beginner'],
official: false,
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1650610823000,
},
{
link: 'https://dev.to/this-is-learning/marko-for-sites-solid-for-apps-2c7d',
title: 'Marko for Sites, Solid for Apps',
description:
'Ryan discusses SPAs and MPAs and delves into the balance between Solid and Marko.',
author: 'Ryan Carniato',
author_url: 'https://dev.to/ryansolid',
keywords: ['solid', 'learning', 'marko', 'spa', 'mpa'],
official: false,
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1650930187000,
},
{
link: 'https://non-traditional.dev/an-intro-to-solidjs-for-react-developers',
title: 'An Intro to Solid.js for React Developers',
description:
'A quick introduction of the similarities, differences, and gotchas of solid.js for React developers',
author: 'Travis Waith-Mair',
author_url: 'https://hashnode.com/@nontraditionaldev',
keywords: ['solid', 'learning', 'react', 'beginner'],
official: false,
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1652436704000,
},
{
link: 'https://dev.to/mbarzeev/converting-a-react-component-to-solidjs-5bgj',
title: 'Converting a React Component to SolidJS',
description: '',
author: 'Matti Bar-Zeev',
author_url: 'https://dev.to/mbarzeev',
keywords: ['solid', 'react', 'porting'],
official: false,
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1654203600000,
},
{
link: 'https://dev.to/this-is-learning/patterns-for-building-javascript-websites-in-2022-5a93',
title: 'Patterns for Building JavaScript Websites in 2022',
description: '',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: ['javascript', 'patterns', 'web'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1654635600000,
},
{
link: 'https://javascript.plainenglish.io/solidjs-looks-can-be-deceptive-65b2f91360fe',
title: 'SolidJS: Looks Can Be Deceptive?',
description: '',
author: 'David Hockley',
author_url: 'https://gosev.medium.com/',
keywords: ['solid'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1653426000000,
},
{
link: 'https://dev.to/ryansolid/when-netlify-asks-you-to-full-time-oss-you-say-yes-5ccf',
title: `When Netlify asks you to full-time OSS, you say yes!`,
description: '',
author: 'Ryan Carniato',
author_url: 'https://www.github.com/ryansolid',
keywords: ['solid', 'netlify'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1653253200000,
},
{
link: 'https://dev.to/devsmitra/getting-started-with-solidjs-a-beginners-guide-5af4',
title: `Getting started with SolidJs – A Beginner's Guide`,
description: '',
author: 'Rahul Sharma',
author_url: 'https://dev.to/devsmitra',
keywords: ['solid', 'introduction'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1653598800000,
},
{
link: 'https://supabase.com/docs/guides/with-solidjs',
title: `SolidJS + Supabase Quick Start`,
description:
'This example provides the steps to build a simple user management app (from scratch!) using Supabase and Solid JS.',
author: 'Supabase',
author_url: 'https://www.supabase.com',
keywords: ['database', 'supabase'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1655186371000,
},
{
link: 'https://blog.openreplay.com/alternatives-to-react-solid-js',
title: `Alternatives to React: Solid JS`,
description:
'Alternatives to React is a series of articles looking at different JavaScript front-end frameworks.',
author: 'Amazing Enyichi Agu',
author_url: 'https://blog.openreplay.com/authors/amazing-enyichi-agu',
keywords: ['ui', 'alternatives', 'react'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1655872130000,
},
{
link: 'https://blog.logrocket.com/build-task-tracker-solidjs-typescript',
title: `Build a task tracker with SolidJS and TypeScript`,
description:
'SolidJS is fast becoming the center of attention in the web development community.',
author: 'Ebenezer Don',
author_url: 'https://blog.logrocket.com/author/ebenezerdon/',
keywords: ['state', 'typescript', 'getting-started'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1656525444000,
},
{
link: 'https://dev.to/mbarzeev/testing-a-solidjs-component-using-vitest-2h35',
title: `Testing a SolidJS Component Using Vitest`,
description: 'A well detailed article on using Solid and Vitest.',
author: 'Matti Bar-Zeev',
author_url: 'https://dev.to/mbarzeev',
keywords: ['testing', 'vitest'],
type: ResourceType.Article,
categories: [ResourceCategory.Educational],
published_at: 1657391036000,
},
{
link: 'https://blog.startifact.com/posts/solidjs-fits-my-brain/',
title: `SolidJS fits my brain`,
description:
"In this article I'm going to talk about the SolidJS frontend framework, and why I think it's cool and fits my brain.",