This directory contains the source for react-window.now.sh.
The website structure was created with create-react-app, although it has since been ejected in order to add custom Webpack loaders.
To run this site locally, first make sure you have NPM linked react-window:
cd /local/path/to/react-window
npm link
cd ./website
npm link react-windowThen run the NPM "start" command in the project root to watch for changes to react-window:
cd /local/path/to/react-window
npm run startLastly, run the NPM "start" command from this directory to run the local webserver:
cd /local/path/to/react-window/website
npm run startTo deploy this website to Now, use the NPM "deploy" command from this directory:
cd /local/path/to/react-window/website
npm run deploy