forked from skillrecordings/egghead-next
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourseDependenciesData.js
More file actions
3134 lines (3133 loc) · 96.6 KB
/
courseDependenciesData.js
File metadata and controls
3134 lines (3133 loc) · 96.6 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 {find} from 'lodash'
export default (courseSlug) =>
find(
[
{
slug: 'create-an-ecommerce-store-with-next-js-and-stripe-checkout-562c',
dependencies: {
react: '>= 17.0.1',
next: '>=9.5.5',
},
topics: [
'Starting a project with Create-Next-App',
'Working with static and dynamic routes',
'Managing product data in Stripe',
'Securely managing secret keys',
'Using the useReducer Hook and writing custom React Hooks for Cart functionality',
'Add global state management with React Context',
'Storing and retrieving data from localStorage',
'Deploying with Vercel and GitHub',
],
illustrator: {
name: 'Kamil Khadeyev',
},
prerequisites: [
{
type: 'egghead_course',
slug: 'the-beginner-s-guide-to-react',
},
],
projects: [
{
label:
'Create an eCommerce Store with Next.js and Stripe Checkout Workshop Repo',
url: 'https://github.com/colbyfayock/space-jelly-store-workshop/',
},
],
},
{
slug: 'headless-wordpress-4a14',
dependencies: {
wordpress: '>=5.5.3',
graphql: '>=15.0.0',
},
topics: [
'Configure a WordPress instance using Local',
'Install & customize WP Plugins',
'Create custom post types',
'Customize and interact with data via the REST API',
'Expose a GraphQL API, and query for exactly what you want',
'Generate fake WordPress data',
'Add Comment functionality',
],
illustrator: {
name: 'Kamil Khadeyev',
},
prerequisites: [
{
type: 'text',
label: 'PHP familiarity helpful',
},
],
},
{
slug:
'react-real-time-messaging-with-graphql-using-urql-and-onegraph-be5a',
dependencies: {
react: '>=16.13.1',
urql: '>=1.9.7',
graphql: '>=15.0.0',
},
topics: [
'GraphQL endpoint configuration in OneGraph',
'Using urql for GraphQL queries, mutations, and subscriptions',
'Debugging network requests',
'Managing authentication with React Context',
],
prerequisites: [
{
type: 'egghead_course',
slug: 'graphql-query-language',
},
{
type: 'egghead_playlist',
label: 'Introduction to urql',
slug: 'introduction-to-urql-a-react-graphql-client-faaa2bf5',
},
{
type: 'egghead_course',
slug: 'react-context-for-state-management',
},
],
projects: [
{
label: 'Build a conversation list with GraphQL Subscriptions',
url:
'https://github.com/eggheadio/eggheadio-course-notes/tree/master/react-real-time-messaging-with-graph-ql-using-urql-and-one-graph/exercises',
},
],
notes: [
{
url:
'https://github.com/eggheadio/eggheadio-course-notes/tree/master/react-real-time-messaging-with-graph-ql-using-urql-and-one-graph',
},
],
},
{
slug: 'scale-react-development-with-nx-4038',
dependencies: {
react: '>=16.13.1',
},
topics: [
'Generating projects from scratch with Nx',
'Add Storybook to a React app',
'Creating & sharing libraries between apps',
'Generating a backend API with a proxy for local development',
"Exploring an app's relationships via the Dependency Graph visualizer",
'Preparing for unit testing with Jest and e2e testing with Cypress',
],
prerequisites: [
{
type: 'text',
label: 'Command line familiarity',
},
{
type: 'text',
label: 'Node.js & npm installed',
},
{
type: 'text',
label: 'Familiarity with React & Express will be helpful',
},
],
notes: [
{
url:
'https://github.com/eggheadio/eggheadio-course-notes/tree/master/scale-react-development-with-nx',
},
],
},
{
slug: 'composing-closures-and-callbacks-in-javascript-1223',
topics: [
'Closures, Callbacks, and Composition',
'Currying, Caching, and Creating operators',
'Creating custom React Hooks',
],
notes: [
{
url:
'https://github.com/eggheadio/eggheadio-course-notes/tree/master/composing-closures-and-callbacks-in-javascript',
},
],
},
{
slug: 'build-maps-with-react-leaflet',
dependencies: {
react: '>=16.13.1',
leaflet: '>=1.6.0',
},
topics: [
"Using Mapbox to style the map's appearance",
'Store location data in GeoJSON documents',
'Customize map markers & tooltips to display metadata',
'useEffect and useRef React Hooks',
'Dynamic location-based data',
'Event handling',
],
prerequisites: [
{
type: 'egghead_course',
slug: 'the-beginner-s-guide-to-react',
},
],
projects: [
{
label: 'Build a Map with React Leaflet workshop repo',
url: 'https://github.com/colbyfayock/launchtime-workshop',
},
],
notes: [
{
url:
'https://github.com/eggheadio/eggheadio-course-notes/tree/master/building-maps-with-react-leaflet',
},
],
},
{
slug:
'eject-create-react-app-and-use-gatsby-for-advanced-react-app-development',
dependencies: {
gatsby: '^2.22.8',
},
topics: [
'Starting a Gatsby Project from scratch',
'Programmatic page creation',
'Static and Dynamic routing',
'Building with page templates',
'Passing data via pageContext',
'Handling protected routes with mock authentication',
'Adding & configuring Gatsby plugins',
"React's useState and useEffect hooks",
],
illustrator: {
name: 'Kamil Khadeyev',
},
prerequisites: [
{
type: 'egghead_course',
slug: 'the-beginner-s-guide-to-react',
},
],
projects: [
{
label: 'Extract pages from CRA to Gatsby',
url:
'https://github.com/eggheadio/eggheadio-course-notes/tree/master/eject-create-react-app-and-use-gatsby-for-advanced-react-app-development/excercises/',
},
],
notes: [
{
url:
'https://github.com/eggheadio/eggheadio-course-notes/tree/master/eject-create-react-app-and-use-gatsby-for-advanced-react-app-development',
},
],
},
{
slug: 'build-an-app-with-the-aws-cloud-development-kit',
dependencies: {
'aws-cdk': '>=1.32.2',
},
topics: [
'Execute AWS Lambda functions locally',
'Create Amazon S3 buckets with AWS CDK',
'Attach an API Gateway to a Lambda function',
'Add & Remove DynamoDB data with Lambda functions',
'Manage permissions in the cloud',
'Connect a frontend React app to AWS CDK infrastructure',
'Deploy a finished app to S3',
'Destroy a CDK stack',
],
illustrator: {
name: 'Kamil Khadeyev',
},
prerequisites: [
{
type: 'egghead_lesson',
label: 'Create an AWS IAM User with Programmatic Access',
slug:
'egghead-create-an-admin-user-with-iam-and-configure-aws-cli-to-enable-programmatic-access-to-aws',
},
{
type: 'egghead_playlist',
label: 'AWS Billing and Cost Management',
slug:
'use-aws-billing-cost-management-dashboard-to-keep-your-aws-bill-to-minimum-ff0f',
},
{
type: 'egghead_playlist',
label: 'Learn AWS Lambda from Scratch',
slug: 'learn-aws-lambda-from-scratch-d29d',
},
{
type: 'egghead_playlist',
label: 'Learn AWS Serverless Application Model (SAM)',
slug:
'learn-aws-serverless-application-model-aws-sam-framework-from-scratch-baf9',
},
{
type: 'egghead_playlist',
label: 'Intro to DynamoDB',
slug: 'intro-to-dynamodb-f35a',
},
],
projects: [
{
label: 'Store user input on AWS using DynamoDB',
url:
'https://github.com/eggheadio/eggheadio-course-notes/tree/master/build-an-app-with-the-AWS-cloud-development-kit/exercises',
},
],
notes: [
{
url:
'https://github.com/eggheadio/eggheadio-course-notes/tree/master/build-an-app-with-the-AWS-cloud-development-kit',
},
],
},
{
slug: 'advanced-sql-for-professional-developers',
topics: [
'CSV import & export',
'Creating custom types',
'Query Performance',
'Transactions',
'Pattern matching & regex',
],
illustrator: {
name: 'Kamil Khadeyev',
},
prerequisites: [
{
type: 'egghead_course',
slug: 'sql-fundamentals',
},
{
type: 'text',
label: 'Familiarity with the CRUD actions in SQL',
},
],
projects: [
{
url:
'https://github.com/eggheadio-projects/advanced-sql-for-professional-developers/tree/master/exercises',
},
],
notes: [
{
url:
'https://github.com/eggheadio-projects/advanced-sql-for-professional-developers',
},
],
},
{
slug: 'the-beginner-s-guide-to-react',
dependencies: {
react: '>=16.12.0',
},
topics: [
'what problems React can solve',
'how React solves those problems under the hood',
'what JSX is and how it translates to regular JavaScript function calls and objects',
'manage state with hooks',
'build forms',
],
},
{
slug: 'thinking-reactively-with-rxjs',
dependencies: {
react: '>=16.9.0',
rxjs: '>=6.5.3',
},
topics: [
'RxJS Operators: flatMap, mapTo, merge, scan, and more',
'Creating observables',
'Building operators',
'Converting written requirements to code',
'Reactive problem solving',
],
illustrator: {
name: 'Kamil Khadeyev',
},
prerequisites: [
{
type: 'egghead_course',
slug: 'introduction-to-reactive-programming',
},
{
type: 'egghead_course',
slug: 'rxjs-beyond-the-basics-operators-in-depth',
},
],
},
{
slug: 'write-your-first-program-with-the-rust-language',
dependencies: {
rust: '>=1.40.0',
},
topics: [
'Types',
'Functions & Loops',
'User Input',
'Package management with `cargo`',
'Pattern Matching',
'Error Handling',
],
},
{
slug: 'web-security-essentials-mitm-csrf-and-xss',
dependencies: {
express: '>=4.17.1',
node: '>8.9.3',
},
topics: [
'Session hijacking (and how to prevent it)',
'Using Charles proxy to simulate various attacks',
'Securely configuring cookies and protecting the data inside them',
"Security rules of thumb such as 'defense in depth' and 'principle of least power'",
],
prerequisites: [
{
type: 'egghead_course',
slug: 'understand-the-basics-of-http',
},
{
type: 'egghead_course',
slug: 'getting-started-with-express-js',
},
],
},
{
slug: 'build-custom-cli-tooling-with-oclif-and-typescript',
dependencies: {
typescript: '>=3.3',
node: '>=8.0.0',
},
topics: [
'Create a Simple CLI',
'Pass Args and flags to a CLI',
'Set up testing for a CLI',
'Add filesystem state to a CLI',
'Scaffold boilerplates (e.g. templates)',
'Polish the CLI with colors, spinners, etc.',
'Spawn child processes so other CLIs can run',
'Control logging & output from other processes',
],
illustrator: {
name: 'Aleksander Ageev',
},
},
{
slug: 'introduction-to-state-machines-using-xstate',
dependencies: {
xstate: '>=4.6.7',
},
topics: [
'Build a simple machine for a piece of UI',
'Build Hierarchical, Parallel, and, History state machines',
'Identify the conditions & implement transition guards',
'Trigger Actions on transition',
'Handle infinite states when working with inputs',
'Understand Activities',
],
illustrator: {
name: 'Maxime Bourgeois',
},
prerequisites: [
{
type: 'egghead_course',
slug: 'construct-sturdy-uis-with-xstate',
},
],
},
{
slug: 'develop-accessible-web-apps-with-react',
dependencies: {
react: '>=16.10.2',
},
topics: [
'The impact of in-accessible web apps different disability groups',
'How to access web sites in the same way impaired users do',
'Inspecting & testing tools for accessibility',
'Write accessible and extensible UI elements & widgets',
'Iteratively refactor & test accessibility issues',
],
illustrator: {
name: 'Aleksander Ageev',
},
prerequisites: [
{
type: 'egghead_course',
slug: 'the-beginner-s-guide-to-react',
},
{
type: 'egghead_course',
slug: 'simplify-react-apps-with-react-hooks',
},
{
type: 'egghead_course',
slug: 'start-building-accessible-web-applications-today',
},
],
},
{
slug: 'build-a-video-chat-app-with-twilio-and-gatsby',
dependencies: {
gatsby: '>=2.15.7',
react: '>=16.9.0',
twilio: '>=3.34.0',
},
topics: [
'Create dynamic web apps using Gatsby',
'Create and configure a Twilio account for enabling video calling',
'Initialize and manage realtime interactions in a web app',
'Handle complex application state using React Context and Hooks',
'Write custom React Hooks to encapsulate application logic',
],
illustrator: {
name: 'Aleksander Ageev',
},
prerequisites: [
{
type: 'egghead_course',
slug: 'the-beginner-s-guide-to-react',
},
{
type: 'egghead_course',
slug: 'simplify-react-apps-with-react-hooks',
},
{
type: 'egghead_course',
slug: 'build-a-blog-with-react-and-markdown-using-gatsby',
},
{
type: 'egghead_course',
slug: 'gatsby-theme-authoring',
},
],
},
{
slug: 'designing-graphql-schemas-99db',
dependencies: {
'apollo-server': '>=2.9.7',
},
topics: [
'Naming conventions for fields, queries, mutations',
'GraphQL Aliases',
'Benefits of nullable fields',
'Connection Specification',
'Mutation Payload Design',
'Nullable vs Non-nullable fields',
'Evolving GraphQL Schemas',
],
illustrator: {
name: 'Maxime Bourgeois',
},
prerequisites: [
{
type: 'egghead_course',
slug: 'graphql-query-language',
},
{
type: 'egghead_course',
slug: 'graphql-data-in-react-with-apollo-client',
},
],
},
{
slug: 'build-an-app-with-react-suspense',
dependencies: {
react: '^0.0.0-experimental-b53ea6ca0',
},
topics: [
'Understand the Suspense component',
'Set up ErrorBoundary where conditions aren’t met',
'Devise strategies to resolve different children',
'Import & use CreateResource to prepare for Suspense',
'Understand concurrent mode',
'Extract components into modules',
],
prerequisites: [
{
type: 'egghead_course',
slug: 'the-beginner-s-guide-to-react',
},
{
type: 'egghead_course',
slug: 'simplify-react-apps-with-react-hooks',
},
{
type: 'egghead_course',
slug: 'advanced-react-component-patterns',
},
{
type: 'egghead_course',
slug: 'reusable-state-and-effects-with-react-hooks',
},
],
},
{
slug: 'a-journey-with-vue-router',
dependencies: {
vue: '>=2.5.22',
'vue-router': '>=3.1.3',
},
topics: [
'Router installation and set up',
'Route creation',
'Router link creation',
'Work with subroutes',
'Creating a default route',
'Access route metadata',
'Create navigation guards',
],
prerequisites: [
{
type: 'egghead_course',
slug: 'develop-basic-web-apps-with-vue-js',
},
],
},
{
slug: 'fix-common-git-mistakes',
topics: [
'Change commit messages',
'Add or remove files from a commit',
'How and when to stash changes',
'What a "detached HEAD" is, and how to fix it',
'Remove secrets from a codebase',
'How to rewrite history',
],
illustrator: {
name: 'Aleksander Ageev',
},
prerequisites: [
{
type: 'egghead_course',
slug: 'practical-git-for-everyday-professional-use',
},
{
type: 'egghead_course',
slug: 'productive-git-for-developers',
},
],
},
{
slug: 'construct-sturdy-uis-with-xstate',
dependencies: {
xstate: '>=4.6.7',
react: '>=16.9.0',
},
topics: [
'Handling HTTP request state',
'Blocking state transitions with guards',
'Parallel state transitions',
'Communicating between state machines in different components with the Actor Model',
'Saving previous state history',
],
illustrator: {
name: 'Maxime Bourgeois',
},
prerequisites: [
{
type: 'egghead_course',
slug: 'introduction-to-state-machines-using-xstate',
},
],
},
{
slug: 'composable-gatsby-themes',
dependencies: {
gatsby: '>=2.16.5',
},
topics: [
'Using yarn workspaces',
'Creating theme starters',
'Dealing with theme conflicts',
'Styling & React Contexts',
'Optimizing gatsby-config',
'Advanced component shadowing techniques',
'Lots more!',
],
prerequisites: [
{
type: 'egghead_course',
slug: 'gatsby-theme-authoring',
},
],
},
{
slug: 'advanced-javascript-foundations',
topics: [
'Primitive Types: the What, How, and Why',
'Reference Execution with the `this` Keyword',
'Understanding Implicit vs Explicit Coercion',
'How Prototypal Inheritance Works in JS',
'Use the ES6 Class Keyword',
'Understand Lexical vs. Dynamic Scope',
'Create New Objects with the New Keyword',
],
illustrator: {
name: 'Maxime Bourgeois',
},
prerequisites: [
{
type: 'egghead_course',
slug: 'learn-es6-ecmascript-2015',
},
],
},
{
slug: 'use-suspense-to-simplify-your-async-ui',
dependencies: {
react: '0.0.0-experimental-b53ea6ca0',
},
topics: ['React Suspense', 'Async State'],
goals: [
'Simple data-fetching with Suspense',
'Render as you fetch data',
'useTransition for improved loading states',
'Load images with Suspense Image',
'Cache resources loaded through React Suspense',
'Suspense with custom hooks',
'Coordinate suspending components with SuspenseList',
],
prerequisites: [
{
type: 'egghead_course',
slug: 'simplify-react-apps-with-react-hooks',
},
{
type: 'egghead_course',
slug: 'javascript-promises-in-depth',
},
],
},
{
slug: 'shareable-custom-hooks-in-react',
dependencies: {
react: '^16.8.6',
},
topics: ['Custom React Hooks', 'Test React Hooks', 'npm'],
goals: [
'Understanding `useState` and `useEffect`',
'Writing a Custom Hook',
'Extracting Hooks into their own modules',
'Packaging a Hook',
'Publishing a Hook to npm',
],
prerequisites: [
{
type: 'egghead_course',
slug: 'the-beginner-s-guide-to-react',
},
{
type: 'egghead_course',
slug: 'reusable-state-and-effects-with-react-hooks',
},
],
},
{
slug: 'immutable-javascript-data-structures-with-immer',
dependencies: {
immer: '^4.0.0',
react: '^16.8.6',
},
topics: [
'Immutable State',
'Structural sharing',
'Currying',
'Detect and distribute changes in data',
],
goals: [
'Deep state updating',
'Rendering immutable data',
'Leveraging structural sharing',
"Update immutable state with React's `useReducer` hook",
'Create & use patches',
],
prerequisites: [
{
type: 'text',
label: 'Basic knowledge of immutable principles',
},
{
type: 'egghead_course',
slug: 'learn-es6-ecmascript-2015',
},
{
type: 'egghead_course',
slug: 'simplify-react-apps-with-react-hooks',
},
],
},
{
slug: 'graphql-query-language',
topics: [
'Query, mutation, & subscription',
'GraphiQL playground',
'Schema',
'Fragments',
'Variables',
'Input types, unions, interfaces, & return payloads',
'Introspective Queries',
],
goals: [
'write any operation, top to bottom, with the GraphQL query language',
'get data from an endpoint with a query',
'change data with mutations',
'subscribe to data changes',
'reuse fields with fragments',
'look at schema documentation in the GraphQL playground',
],
},
{
slug: 'javascript-es2019-in-practice',
topics: [
'Flatten arrays',
'Data/string manipulation',
'Data structure management',
'Use flat to map and filter at the same time',
'Choose the most performant structure',
'Clone objects',
'What, when, and how to polyfill',
],
prerequisites: [
{
type: 'text',
label: 'Usage of common command line tools',
},
{
type: 'egghead_course',
slug: 'learn-es6-ecmascript-2015',
},
{
type: 'egghead_course',
slug: 'introduction-to-node-the-fundamentals',
},
],
goals: [
'use every new feature approved for ES2019',
'understand when to use optional catch binding',
'update legacy projects for ES2019',
],
},
{
slug:
'build-content-rich-progressive-web-apps-with-gatsby-and-contentful',
dependencies: {
gatsby: '^2.5.7',
},
topics: [
'Data Modeling with Contentful',
'Starting a Gatsby project',
'Using GraphQL to query data in Gatsby',
'Deploying a static site with Netlify',
'Set up automatic redeployment',
],
illustrator: {
name: 'Aleksander Ageev',
},
prerequisites: [
{
type: 'egghead_course',
slug: 'build-a-blog-with-react-and-markdown-using-gatsby',
},
{
type: 'text',
label: 'Know React and GraphQL basics',
},
],
goals: [
'plan your data types and their connections in Contentful',
'build a Gatsby site',
'use GraphQL to query data from Contentful',
'deploy your site to Netlify',
'redeploy your site when data changes',
],
},
{
slug: 'gatsby-theme-authoring',
dependencies: {
gatsby: '>=2.13.1',
},
},
{
slug: 'vue-and-socket-io-for-real-time-communication',
dependencies: {
vue: '^2.5.21',
'socket.io': '^2.2.0',
},
topics: [
'Configuring a client for realtime communication',
'Broadcasting messages to one or many clients',
'Filtering messaging while targeting specific clients',
'Identifying and grouping clients',
'Triggering side effects',
'Client-client, client-server, and server-server communication',
],
prerequisites: [
{
type: 'text',
label: 'Some basic understanding of JavaScript, HTML, and CSS',
},
{
type: 'text',
label:
'Familiarity with Vue, npm and node, and express servers is recommended',
},
{
type: 'text',
label:
'No previous experience with realtime communication libraries needed!',
},
],
goals: [
'Add basic real-time functionality to any application',
'Broadcast a message to one or many connected clients',
'Configure socket.io with node.js',
'Connect to a socket in vue components',
],
},
{
slug: 'vr-applications-using-react-360',
dependencies: {
react: '^16.3.2',
'react-360': '^1.1.0',
},
topics: [
'React concepts: components, props, state',
'Surfaces',
'Image distortion',
'Runtime',
'Models & Entities',
'Events & handlers',
'Native modules',
'Animations',
],
illustrator: {
name: 'Maxime Bourgeois',
},
prerequisites: [
{
type: 'egghead_course',
slug: 'the-beginner-s-guide-to-react',
},
{
type: 'text',
label: 'Know the basics of React and how to use npm',
},
{
type: 'text',
label: 'Have some knowledge of JavaScript and CSS',
},
{
type: 'text',
label: 'No math or WebGL required!',
},
],
goals: [
'Start and develop a React 360 app from scratch',
'Add text and images using `<Text/>` and `<Image/>` components',
'Use Surfaces to add 2D interfaces in a 3D space',
'Add external 3D objects (e.g. from Google Poly) to React 360 apps',
'Capture user interaction with events',
'Add animation to elements',
],
},
{
slug: 'test-production-ready-apps-with-cypress',
dependencies: {
cypress: '^3.1.5',
},
topics: [
'Writing integration tests',
'Selector best practices',
'Seeding data into a database',
'Mocking network requests',
'Creating a mock backend',
],
illustrator: {
name: 'Maxime Bourgeois',
},
prerequisites: [
{
type: 'text',
label: 'Basic knowledge of JavaScript, HTML, and CSS.',
},
{
type: 'text',
label: 'Basic understanding of client/server data transfer',
},
{
type: 'text',
label: 'Familiarity with DOM element selectors',
},
],
goals: [
'Use Cypress to test all layers of your stack simultaneously',
'Test the front and back ends of your application',
'Ship apps that work like they’re supposed to, with no secret bugs for your users to discover',
],
},
{
slug: 'sql-fundamentals',
topics: [
'Tables and table relationships',
'Conditional selection',
'Data integrity and data types',
'Aggregate functions',
'Subqueries',
'And more...!',
],
illustrator: {
name: 'Maxime Bourgeois',
},
prerequisites: [
{
type: 'text',
label: 'SQL beginners welcome!',
},
{
type: 'text',
label: 'Some command line and terminal experience will be helpful',
},
],
},
{
slug: 'react-navigation-for-native-mobile-applications',
dependencies: {