
React
文章平均质量分 65
qfgg3
这个作者很懒,什么都没留下…
展开
-
Create Apps with No Configuration
Create React App is a new officially supported way to create single-page React applications. It offers a modern build setup with no configuration.Getting StartedInstallationFirst, instal转载 2016-09-03 09:00:51 · 475 阅读 · 0 评论 -
How Redux works
IntroductionRedux is a recent Javascript library (started in May 2015) which is described as “predictable state container for JavaScript apps”. It takes the idea from Flux architecture and simplifie转载 2017-04-21 16:44:40 · 583 阅读 · 0 评论 -
React + Rx: GitHub - belfz/fully-reactive-react-example
https://github.com/belfz/fully-reactive-react-example转载 2017-04-13 11:15:08 · 690 阅读 · 0 评论 -
react官方模板
https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/config/webpack.config.prod.js转载 2017-04-12 13:41:43 · 2117 阅读 · 0 评论 -
A Better File Structure For React/Redux Applications
Most of the examples I could find about React/Redux applications (either client side or universal) are very simple. They choose to organize files by nature (action, component, container, reducer). T转载 2017-04-12 11:33:13 · 645 阅读 · 0 评论 -
深入理解Redux:10个来自专家的Redux实践建议
2016-09-02 某熊的全栈之路 前端早读课前言周五啦,昨天的书你抢到了吗?没抢到的不要紧,最后剩下50本签名版等你来,可通过阅读原文购买。ps:今天的分享有点长,由@某熊的全栈之路带来的翻译分享。正文从这开始~记得我才开始使用React的时候,还没有Redux呢,那时候只有Flux 架构的理论概念和一堆各种各样的实现。转载 2016-09-03 08:46:30 · 4700 阅读 · 0 评论 -
Redux without profanity
Welcome to a summary of how we write redux apps at Docker, Inc. aimed to be used as a guide for our projects and the Redux community. We hopped on the Redux train early at Docker. Along the way we've转载 2016-09-03 09:35:24 · 1353 阅读 · 0 评论 -
Getting Started with Redux: An Intro
As web applications grow in complexity, so does the task of updating and displaying their underlying data. Many approaches to managing this data result in a complex web of views. These views may be li转载 2016-09-03 09:20:36 · 423 阅读 · 0 评论 -
warriorjs
https://github.com/olistic/warriorjsThis is a game designed to teach JavaScript and artificial intelligence in a fun, interactive way.You play as a warrior climbing a tall tower to at the t转载 2016-09-03 09:17:30 · 761 阅读 · 0 评论 -
Mobile JavaScript Apps: The Dawn of React Native
My friend Daniel has been a web developer throughout his career. In the last four years, Daniel like many of his peers was primarily a mobile web developer.Daniel made sure that everything he deve转载 2016-09-03 09:14:04 · 597 阅读 · 0 评论 -
Setting up a new Typescript 1.9 and React project
Posted on Jun 21, 2016#typescript #react #babel #webpackIntroductionEditor setupAtomSublimeVisual Studio CodeRecommendationLintingBasic project setupNote for VS Code usersSetting u转载 2016-09-03 09:12:02 · 796 阅读 · 0 评论 -
A STEP-BY-STEP TDD APPROACH ON TESTING REACT COMPONENTS USING ENZYME
That's a mouthful title, but it's the best I could do. Coffee's not in my system yet and the guy at the coffeeshop knows no other method than waiting for the effect. And in programming, waiting is dea转载 2016-09-03 09:09:43 · 665 阅读 · 0 评论 -
React.js in patterns
Long time I was searching for a good front-end framework. Framework that will help me write scalable and easy to maintain UI. Even though React is just a library for rendering it comes with so many be转载 2016-09-03 09:06:13 · 900 阅读 · 0 评论 -
Design Principles
After using React in a couple of applications, you might be interested in contributing to React. Before diving into specifics, we think it's important to establish a few design principles guiding ou转载 2016-09-03 09:04:41 · 514 阅读 · 0 评论 -
chain async actions in redux-thunk & redux-promise
// If you use Redux Thunk...import { createStore, applyMiddleware } from 'redux'import thunk from 'redux-thunk'const store = createStore(reducer, applyMiddleware(thunk))// You can define asynchr...转载 2018-11-21 11:12:57 · 243 阅读 · 0 评论