This is a example of an little ecommerce using ReactJS.
- Basic eccomerce features(add to cart, remove from cart, etc)
# Get the repo
git clone https://github.com/MarcosSpessatto/react-ecommerce.git
# Change directory
cd react-ecommerce
# Install NPM dependencies
npm install
# Run Dev mode
npm run dev
# Run unit tests
npm run test - Single run
npm run test:watch - Live mode
npm run coverage - Coverage - Html Reporter at ./coverage
# Run acceptance tests (* Important, you should be running the project in one tab to run integration tests *)
npm run test:e2e - Single run
# For production
# Build app
npm run build
# Run for production
npm start