This repository has been archived by the owner on Jan 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathreact-tutorials.js
77 lines (75 loc) · 2.71 KB
/
react-tutorials.js
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
module.exports = {
key: "react-tutorials",
name: "React Tutorials",
description:
"Articles that walk you through completing a task with React, step-by-step.",
aka: ["react walkthroughs", "react getting started", "react guides"],
tags: [
{
name: "redux",
description: "The tutorial introduces Redux in combination with React.",
},
],
articles: [
{
title: "React Tutorial For Beginners",
url: "https://ihatetomatoes.net/react-tutorial-for-beginners/",
author: "Petr Tichy",
date: "2017-09-11",
description:
"React tutorial for complete beginners. Learn the basic or React.js by following this simple guide for React newbies.",
},
{
title: "Learning React.js: Getting Started and Concepts",
url:
"https://scotch.io/tutorials/learning-react-getting-started-and-concepts",
author: "Ken Wheeler",
date: "2017-10-18",
description:
"The first installment in a new series of tutorials, Learning React, that will focus on becoming proficient and effective with Facebook's React library",
notes:
"This article was published way back in 2014, but the author has kept it up-to-date. It has been updated for react 16.",
},
{
title: "Build with React Tutorial",
url: "http://buildwithreact.com/tutorial",
author: "buildwithreact",
date: "2016-9-13",
description:
"Learn ReactJS with this simple and interactive tutorial. Topics include JSX, components, events, state, and a quick look under the hood.",
},
{
title: "Raw React",
url: "http://jamesknelson.com/learn-raw-react-no-jsx-flux-es6-webpack/",
author: "James K Nelson",
date: "2016-4-24",
description:
"Learn React from the ground up, without worrying about JSX, Flux, ES6, Webpack, etc.",
},
{
title: "Official React Tutorial",
url: "https://reactjs.org/tutorial/tutorial.html",
author: "Facebook",
date: "2017-10-27",
description:
"The React tutorial included in the official React documentation.",
},
{
title: "Comprehensive React.js Guide",
url:
"http://tylermcginnis.com/reactjs-tutorial-a-comprehensive-guide-to-building-apps-with-react/",
author: "Tyler McGinnis",
date: "2015-1-12",
description: "Guide for learning to build apps with React.",
},
{
title: "Full-Stack Redux Tutorial",
url: "http://teropa.info/blog/2015/09/10/full-stack-redux-tutorial.html",
author: "Tero Parviainen",
date: "2016-2-24",
description:
"A Comprehensive Guide to Test-First Development with Redux, React, and Immutable",
tags: ["redux"],
},
],
};