GoTeamEpsilon / angular-to-react-redux

Angular to React/Redux, a Guide for Angular v1 Experts Looking to Learn React/Redux
MIT License
107 stars 12 forks source link

Project Scaffolding #35

Closed MatthewVita closed 7 years ago

MatthewVita commented 7 years ago

Document in ReadMe

MatthewVita commented 7 years ago

I think I know which one I'm going with :)

MatthewVita commented 7 years ago

cc @ShaneChesnutt

MatthewVita commented 7 years ago

Prerequisites:

INSTALL

git clone https://github.com/davezuko/react-redux-starter-kit.git app && \
cd app && \
npm install --save-dev redux-devtools redux-devtools-log-monitor redux-devtools-dock-monitor && \
npm install && \
rm -rf .git CHANGELOG.md CONTRIBUTING.md LICENSE && \
git init && \
git add -A && \
git commit -m "Initial commit" && \
echo "-------------------------------------------------------" && \
echo "-- update package.json with your project information --" && \
echo "-------------------------------------------------------" && \
$EDITOR package.json

UNIT TESTS

npm run test:dev

DEVELOPMENT MODE

npm start

PRODUCTION MODE

npm install -g local-web-server && \
npm run deploy:prod && \
cd dist && \
echo "---------------------------------------------------------" && \
echo "-- serving app via a test web server at localhost:8080 --" && \
echo "---------------------------------------------------------" && \
ws -p 8080
MatthewVita commented 7 years ago

Hookay, so a few things.

MatthewVita commented 7 years ago

Also, it turns out that https://github.com/davezuko/react-redux-starter-kit is a great seeder project. It is just incredibly intimidating at first because one must know Redux.

MatthewVita commented 7 years ago

https://github.com/reactjs/redux/issues/291#issuecomment-122829159 ... kind of like a controller and service together here :)