Author: Paulo Regis
##Screenshots
Initial structure based on: Workflow ReactJS - by fdaciuk
- Node.js
>=v6;
- Clone this repository:
git clone git@github.com:fdaciuk/workflow-reactjs.git; - Install dependencies:
yarn(ornpm i); - Run
yarn dev(ornpm start) to develop onhttp://localhost:3000 - Run
yarn build(ornpm run build) for production build (files will be generated ondistdirectory) - Run
yarn storybook (or npm run storybook)to show the documentation onhttp://localhost:6006
If you are on Windows, and try to run yarn lint, you'll get an error
because spawn module does not work very well on Windows.
You should install cross-spawn, and edit gulpfile.js, removing line 4 and
uncomment line 7.
yarn dev (or npm run dev): Starts the application on development modeyarn test (or npm test): Run tests onceyarn test:watch (or npm run test:watch): Run tests in watch modeyarn build (or npm run build): Build project to productionyarn build:analyzer (or npm run build:analyzer): Build project to production and open bundle analyzer on8888portyarn storybook (or npm run storybook): Run Storybook on6006portyarn storybook:build: Build Storybook to static filesyarn update-packages: Update all packages to the latest versionyarn start (or npm start): Special script reserved to run production code. Change as you wish. For now, it is the same asyarn devyarn lint (or npm run lint): Run lint checkyarn lint:watch (or npm run lint:watch): Run lint chech on watch modeyarn lint:fix (or npm run lint:fix): Run lint check + auto fixes