https://github.com/metamarcdw/react-redux-transcrypt
This project is adapted to Python from the "React from the Ground Up" course created by Tim Knight
https://github.com/metamarcdw/react-redux-transcrypt
python react redux transcrypt
Last synced: 8 months ago
JSON representation
This project is adapted to Python from the "React from the Ground Up" course created by Tim Knight
- Host: GitHub
- URL: https://github.com/metamarcdw/react-redux-transcrypt
- Owner: metamarcdw
- Created: 2018-04-11T19:59:59.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-09T06:16:49.000Z (over 7 years ago)
- Last Synced: 2025-04-12T09:43:31.614Z (about 1 year ago)
- Topics: python, react, redux, transcrypt
- Language: Python
- Size: 8.79 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Example of React and Redux with Python using Transcrypt and Component.py
This project is adapted to Python from the "React from the Ground Up" course created by Tim Knight
First install Python>=3.6/pip, NodeJS/npm>=5.2, and Git:
`sudo pacman -S python-pip npm git`
Next, clone the repo
`git clone https://github.com/metamarcdw/react-redux-transcrypt`
Set up your React/Transcrypt environment:
(Use of a virtual environment is recommended but not required)
```
mkvirtualenv transcrypt
pip install git+https://github.com/qquick/transcrypt@67c8b9#egg=transcrypt
pip install git+https://github.com/metamarcdw/Component.py@master#egg=Component_py
cd react-redux-transcrypt/
npm install
npm install -g babel-cli # If running Windows
```
We can now compile with Transcrypt and run our Webpack server
```
make compile
npm start
```
OR (If running Windows)
```
compile
npm run win
```
Open up a browser and connect to http://localhost:3000