https://github.com/asbjornenge/thinking-in-react
:lollipop: Thinking in React workshopper
https://github.com/asbjornenge/thinking-in-react
Last synced: 2 months ago
JSON representation
:lollipop: Thinking in React workshopper
- Host: GitHub
- URL: https://github.com/asbjornenge/thinking-in-react
- Owner: asbjornenge
- Created: 2014-05-18T10:24:19.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2017-04-04T11:58:00.000Z (about 8 years ago)
- Last Synced: 2025-03-31T23:03:18.290Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 242 KB
- Stars: 180
- Watchers: 12
- Forks: 34
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-workshopper - thinking-in-react
README
# Thinking in React
A [workshopper](https://github.com/rvagg/workshopper) module for learning [React](http://facebook.github.io/react/index.html), based on [thinking in react](http://facebook.github.io/react/docs/thinking-in-react.html).
It will hopefully help you get started with React and help you to get a good workflow from the get-go.
## Install
$ npm install -g thinking-in-react
## Usage
Just run
$ thinking-in-react
to play.
## Changelog
### v3.1.2
* Updated the use of `refs` to functions instead of strings (now deprecated)
### v3.1.1
* Added `react-addons-test-utils` to install instructions
* Using user local `react-addons-test-utils` fixes step 5### v3.1.0
* Added support for React v15 (run/verify on step 5 broke previously with React v15)
### v3.0.1
* Fixed a typo via #17 - thanks @brian-stovall
### v3.0.0
* Bumped jsdom to v7
Bumping jsdom introduces a breaking change (major release) since the new version no longer supports node 0.x.
If you see build issues with `contextify` then make sure to upgrade to node 4+ and things should work.
If you don't want to upgrade node feel free to install `[email protected]` :smile:### v2.0.0
* Added support for JSX and ES2015 via Babel - thanks @ThibWeb
* Updated to React v0.14### v1.0.0
* Using process.cwd() instead of process.env.PWD - improves Windows support
* Also did a non-semver release to get to a proper semver starting point### v0.1.0
* Introduced blessed UI guide for step 1
* Improved HINTs
* Introduced state bingo!
* Introduced ```thinking-in-react server``` to test your solution in the browser!