From 52f2b399114c614c08229bf718cff27d26e9ba9c Mon Sep 17 00:00:00 2001 From: Mark Erikson Date: Tue, 21 Jun 2016 00:41:12 -0400 Subject: [PATCH] Updates, 2016-06-20 --- basic-concepts.md | 10 ++++++++++ immutable-data.md | 6 +++++- react-tutorials.md | 4 ++++ redux-side-effects.md | 3 +++ redux-techniques.md | 6 +++++- 5 files changed, 27 insertions(+), 2 deletions(-) diff --git a/basic-concepts.md b/basic-concepts.md index 1506b71..2980dfd 100644 --- a/basic-concepts.md +++ b/basic-concepts.md @@ -27,3 +27,13 @@ - **On being overwhelmed with our fast paced industry** http://wesbos.com/overwhelmed-with-web-development/ Wes Bos gives advice on how to cut down on noise, avoid "new shiny" syndrome, and still improve your web dev skills + +- **The Hitchhiker's Guide to the Modern Front End Development Workflow** + http://marcobotto.com/the-hitchhikers-guide-to-the-modern-front-end-development-workflow/ + A useful overview of the many categories and types of tools used in modern web development. + +- **Simplified Javascript Jargon** + http://jargon.js.org/ + An alphabetical list of common terms in the JS world, with very short definitions in the main list and slightly longer descriptions linked for each term. + + \ No newline at end of file diff --git a/immutable-data.md b/immutable-data.md index 303ac4b..2fcad4e 100644 --- a/immutable-data.md +++ b/immutable-data.md @@ -43,4 +43,8 @@ - **Redux Ecosystem Links: Immutable Data** https://github.com/markerikson/redux-ecosystem-links/blob/master/immutable-data.md - A large list of libraries for managing immutable data in Javascript. Some of them are Redux-specific, but also includes many general-purpose immutable data libraries as well. \ No newline at end of file + A large list of libraries for managing immutable data in Javascript. Some of them are Redux-specific, but also includes many general-purpose immutable data libraries as well. + +- **Painless Immutability** + https://guigrpa.github.io/2016/06/16/painless-immutability/ + A somewhat opinionated article from the author of a new immutable data library comparing different options, but still well-written and informative about the pros and cons of each. \ No newline at end of file diff --git a/react-tutorials.md b/react-tutorials.md index a4489b9..4824e49 100644 --- a/react-tutorials.md +++ b/react-tutorials.md @@ -62,6 +62,10 @@ - **Getting Started with React the Easy Way** http://codeutopia.net/blog/2016/01/10/getting-started-with-react-the-easy-way/ Shows the simplest way to load React into a web page and start using it + +- **React Enlightenment** + http://www.reactenlightenment.com/ + A straightforward, cookbook-style approach to learning React. (Currently a work-in-progress.) #### Project-Based Tutorials diff --git a/redux-side-effects.md b/redux-side-effects.md index 3b799b4..09f6e19 100644 --- a/redux-side-effects.md +++ b/redux-side-effects.md @@ -11,6 +11,9 @@ http://stackoverflow.com/questions/34570758/why-do-we-need-middleware-for-async-flow-in-redux/34599594#34599594 Dan Abramov gives reasons for using thunks and async middleware, and some useful patterns for using thunks. +- **Pure Functionality and Side Effects with Redux** + https://blog.hivejs.org/building-the-ui-2/ + An overview of what side effects are, how they fit into Redux, and several approaches for managing them. #### Sagas diff --git a/redux-techniques.md b/redux-techniques.md index 6b8abef..724d13a 100644 --- a/redux-techniques.md +++ b/redux-techniques.md @@ -69,4 +69,8 @@ - **Scalable Single-Page Application Architecture with Redux and Angular 2** http://blog.mgechev.com/2016/04/10/scalable-javascript-single-page-app-angular2-application-architecture/ - An in-depth article covering how to architect an application using Redux, Angular 2, and RxJS. \ No newline at end of file + An in-depth article covering how to architect an application using Redux, Angular 2, and RxJS. + +- **Querying a Redux Store** + https://medium.com/@adamrackis/querying-a-redux-store-37db8c7f3b0f + A look at best practices for organizing and storing data in Redux, including normalizing data and use of selector functions. \ No newline at end of file