Skip to content

Commit 3ffe584

Browse files
committed
Removed dead links
1 parent 5c3d88b commit 3ffe584

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+312
-1171
lines changed

README.md

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,6 @@ All of the links in this collection are worth reading, but there's obviously a L
9494
- [Timeline for Learning React](https://daveceddia.com/timeline-for-learning-react/)
9595
[How to Learn React](https://daveceddia.com/how-to-learn-react/)
9696
Another high-level suggested timeline for how to approach learning React and related technologies.
97-
- [React Roadmap](https://github.com/ericdouglas/react-roadmap)
98-
A curated list of free resources to master React Development, in suggested learning order
9997
- [Tips to learn React + Redux](https://www.robinwieruch.de/tips-to-learn-react-redux/)
10098
An extensive and excellent list of suggestions to follow when learning and using React and Redux. Tips include when to use different component patterns, when to bring in a state management library, Redux state structuring, unit testing, and much more.
10199

@@ -172,8 +170,6 @@ If you are new to React, try reading these articles in order.
172170
An excellent list of common patterns for structuring React components, with examples
173171
- [The React Component Lifecycle](https://www.kirupa.com/react/component_lifecycle.htm)
174172
A useful description of the order and purpose of React’s component lifecycle methods.
175-
- [8 no-Flux strategies for React component communication](http://andrewhfarmer.com/component-communication/)
176-
Very helpful list of ways to have React components communicate back and forth
177173
- [Presentational and Container Components](https://medium.com/@dan_abramov/smart-and-dumb-components-7ca2f9a7c7d0)
178174
Dan Abramov's foundational article on classifying components based on intent and behavior. A must-read for anyone using React.
179175
- [Mixins Considered Harmful](https://facebook.github.io/react/blog/2016/07/13/mixins-considered-harmful.html)
@@ -197,16 +193,12 @@ If you are new to React, try reading these articles in order.
197193
Dan Abramov from the React team gives his thoughts on how to handle method binding.
198194

199195
### AJAX requests and Data Fetching
200-
- [React AJAX Best Practices](http://andrewhfarmer.com/react-ajax-best-practices/)
201-
Covers four ways to approach managing queries and data fetching.
202196
- [AJAX Requests in React: How and Where to Fetch Data](https://daveceddia.com/ajax-requests-in-react/)
203197
An overview of where AJAX requests fit into React usage.
204198

205199
### Immutable Data
206200
- [Pros and Cons of Using Immutability With React](http://reactkungfu.com/2015/08/pros-and-cons-of-using-immutability-with-react-js/)
207201
Excellent description of what immutability is, how to use use these concepts with React, and pros and cons of managing data immutably. While the title refers to React, most of the writing just deals with plain Javascript concepts.
208-
- [Javascript and Immutability](http://t4d.io/javascript-and-immutability/)
209-
A description of how to properly immutably update objects and arrays using functions like assign and slice
210202
- [Redux Docs: Structuring Reducers - Immutable Update Patterns](https://redux.js.org/recipes/structuring-reducers/immutable-update-patterns)
211203
Useful examples for doing proper immutable updates, including common mistakes, proper updates of nested data, updates for arrays, and more. (Helpful for Redux, but not Redux-specific.)
212204

@@ -236,14 +228,10 @@ If you are new to React, try reading these articles in order.
236228
### Getting Started
237229
- [Redux Docs](https://redux.js.org/)
238230
The official Redux documentation. Contains an excellent tutorial that walks you through “here’s what you want to do, and how we came up with this”, as well as recipes for more advanced topics. Be sure to read through the FAQ for answers to common questions and links to further information.
239-
- [Getting Started with Redux - Video Series](https://egghead.io/series/getting-started-with-redux)
240231
[Getting Started with Redux - Course Notes](https://github.com/tayiorbeii/egghead.io_redux_course_notes)
241232
Dan Abramov, the creator of Redux demonstrates various concepts in 30 short (2-5 minute) videos. The linked Github repo contains notes and transcriptions of the videos.
242-
- [Building React Applications with Idiomatic Redux - Video Series](https://egghead.io/series/building-react-applications-with-idiomatic-redux)
243233
[Building React Applications with Idiomatic Redux - Course Notes](https://github.com/tayiorbeii/egghead.io_idiomatic_redux_course_notes)
244234
Dan Abramov's second video tutorial series, continuing directly after the first. Includes lessons on store initial state, using Redux with React Router, using "selector" functions, normalizing state, use of Redux middleware, async action creators, and more. The linked Github repo contains notes and transcriptions of the videos.
245-
- [A Cartoon Guide to Redux](https://code-cartoons.com/a-cartoon-intro-to-redux-3afb775501a6)
246-
A nifty introduction to Redux’s concepts using cartoon explanations
247235
- [Redux: From Twitter Hype to Production](http://slides.com/jenyaterpil/redux-from-twitter-hype-to-production#/)
248236
An extremely well-produced slideshow that visually steps through core Redux concepts, usage with React, project organization, and side effects with thunks and sagas. Has some absolutely fantastic animated diagrams demonstrating how data flows through a React+Redux architecture.
249237
- [Leveling Up with React: Redux](https://css-tricks.com/learning-react-redux/)
@@ -265,8 +253,6 @@ If you are new to React, try reading these articles in order.
265253
Understanding middlewares through a series of small experiments
266254

267255
### Debugging
268-
- [Hot reloading and time travel debugging: what are they?](https://code-cartoons.com/hot-reloading-and-time-travel-debugging-what-are-they-3c8ed2812f35)
269-
A short but informative article describing these concepts and why they're useful, with cartoon illustrations
270256
- [Time Travel in React Redux apps using the Redux DevTools](https://onsen.io/blog/react-redux-devtools-with-time-travel/)
271257
Examples of configuring a Redux store to use the DevTools enhancers, and using both the DevTools components and the browser extension for debugging.
272258

@@ -313,10 +299,5 @@ If you are new to React, try reading these articles in order.
313299
Formidable Labs describes their preferred approaches for configuring Webpack, including optimization approaches.
314300

315301
### Hot Module Reloading
316-
- [HMR Tutorial: Why Use HMR?](http://andrewhfarmer.com/why-use-hmr/)
317-
[HMR Tutorial: Understanding HMR](http://andrewhfarmer.com/understanding-hmr/)
318-
[HMR Tutorial: 3 Ways to use HMR with Webpack](http://andrewhfarmer.com/3-ways-webpack-hmr/)
319-
[HMR Tutorial: HMR Ideas and Setup](http://andrewhfarmer.com/webpack-hmr-tutorial/)
320-
A very readable and informative series of articles that explains what HMR is, what benefits it gives, and how to use it.
321302
- [Webpack Hot Reloading and React](https://ctheu.com/2015/12/29/webpack-hot-reloading-and-react-how/)
322303
An explanation of how Hot Reloading works, and how the various pieces fit together.

basic-concepts.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,6 @@
100100
https://daveceddia.com/how-to-learn-react/
101101
Another high-level suggested timeline for how to approach learning React and related technologies.
102102

103-
- **React Roadmap**
104-
https://github.com/ericdouglas/react-roadmap
105-
A curated list of free resources to master React Development, in suggested learning order
106-
107103
- **React FAQ**
108104
https://github.com/timarney/react-faq
109105
A collection of links to help answer your questions about React, including how to get started
@@ -172,10 +168,6 @@
172168
http://goshakkk.name/redux-vs-mobx-vs-flux-etoomanychoices/
173169
Advice on avoiding choice overload when learning a toolset like React, by simplifying and just focusing on one new thing at a time.
174170

175-
- **How to avoid Javascript fatigue and sleep well at night**
176-
https://www.javascriptfatigue.club/blog/2016/11/29/how-to-avoid-javascript-fatigue-and-sleep-well-at-night
177-
A talk giving suggestions for dealing with learning tools and techologies, including knowing when to stop reading, following specific experts, learning patterns, and focusing on what the real problem is you're trying to solve
178-
179171
- **How to Manage Javascript Fatigue**
180172
https://auth0.com/blog/how-to-manage-javascript-fatigue/
181173
A description of what "JS fatigue" means in practice, and advice for managing it, including "picking battles", "make something interesting", and "be aware of common concepts".

boilerplates-and-starter-kits.md

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,6 @@
8383
http://habd.as/awesome-react-boilerplates/
8484
Another good curated list of boilerplates for both React and React Native
8585

86-
- **React Community: Starter Kit**
87-
https://reactjs.org/community/starter-kits.html
88-
A list of starter kits that are officially recommended by the React team, as well as other kits from the community.
89-
90-
91-
9286
#### React Project Setup
9387

9488
- **Simple React Development in 2018**
@@ -130,18 +124,7 @@
130124
- **Setup a React Environment using Webpack and Babel**
131125
https://scotch.io/tutorials/setup-a-react-environment-using-webpack-and-babel
132126
A tutorial that teaches how to set up a basic Webpack 2 + Babel config from scratch.
133-
134-
- **Setting up a Front-End Project**
135-
https://medium.com/@Torwori/setting-up-a-front-end-project-part-1-d7fbaaaa5e14
136-
https://medium.com/@Torwori/setting-up-a-front-end-project-part-2-cbbae56ffd15
137-
https://medium.com/@Torwori/setting-up-a-front-end-project-part-3-38f1681d310b
138-
https://medium.com/@Torwori/setting-up-a-front-end-project-part-4-b6fe32e58e5
139-
An in-depth tutorial series covering setup and configuration of many tools, including Git, Webpack, Babel, ESLint, and Typescript.
140-
127+
141128
- **Setting up Webpack, Babel, and React from scratch in 2017**
142129
https://stanko.github.io/webpack-babel-react-revisited/
143130
A step-by-step tutorial that demonstrates each piece of the process needed to set up a build system from scratch.
144-
145-
- **How to set up React, Webpack 3, and Babel, in 2017**
146-
https://www.valentinog.com/blog/react-webpack-babel/
147-
A clear explanation of how to create a basic Webpack+Babel setup for a React app, with descriptions of why each step is necessary.

community-resources.md

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@
2323
https://github.com/d3viant0ne/awesome-webpack
2424
A curated list of awesome Webpack resources, libraries and tools
2525

26-
- **React Roadmap**
27-
https://github.com/ericdouglas/react-roadmap
28-
A curated list of free resources to master React Development
29-
3026
- **React FAQ**
3127
https://github.com/timarney/react-faq
3228
A collection of links to help answer your questions about React.js
@@ -116,22 +112,14 @@
116112

117113
#### Newsletters
118114

119-
- **Full Stack React**
120-
http://newsletter.fullstackreact.com/
121-
Fullstack React is a weekly newsletter about the React ecosystem with an emphasis on useful libraries, tutorials and code. Subscribe to read the best articles each week on React, Flux, GraphQL, Relay, and friends.
122-
123115
- **React.js Newsletter**
124116
http://reactjsnewsletter.com/
125117
The free, weekly newsletter of the best React.js news, articles, projects, and more - brought to you by React.js Program
126118

127119
- **React Digest**
128120
http://reactdigest.net/
129121
A free, weekly newsletter about the latest news in React Javascript community. The only news source you need targeted on (but not limited to) React, Javascript, Flux and functional programming.
130-
131-
- **Curated React**
132-
http://curatedreact.com/
133-
Curated React is a weekly curated publication full of interesting, relevant links geared towards ReactJS and React Native.
134-
122+
135123
- **React Statuscode**
136124
http://react.statuscode.com/
137125
A free, once-weekly e-mail newsletter on React from the authors of JavaScript Weekly.
@@ -144,10 +132,6 @@
144132
https://ponyfoo.com/weekly
145133
A single email every thursday, discussing front-end web development and related technologies.
146134

147-
- **Deterministic**
148-
https://deterministic.curated.co
149-
A weekly digest of interesting news and articles covering functional programming for the web, especially on the front end.
150-
151135
- **ES.next News**
152136
http://esnextnews.com/
153137
5 ECMAScript.next links every week, in your inbox. Curated by Dr. Axel Rauschmayer and Johannes Weber.

0 commit comments

Comments
 (0)