Unify all your productivity platforms into one
  • JavaScript 88.3%
  • CSS 6.9%
  • HTML 4.7%
Find a file
2016-12-13 01:24:24 -05:00
client Adds a random background to the board 2016-12-12 23:29:21 -05:00
.gitignore Adds build directory to the source control 2016-12-12 18:40:56 -05:00
client.js Formatting the code base 2016-12-12 23:03:08 -05:00
package.json Adds a node backend that will service the static files. 2016-12-12 18:28:54 -05:00
Procfile Adds a node backend that will service the static files. 2016-12-12 18:28:54 -05:00
README.md Add install and run documentation 2016-12-13 01:24:24 -05:00
server.js Adds a node backend that will service the static files. 2016-12-12 18:28:54 -05:00

Krdz Proto.

Where to start?

First, clone the repository:

git clone git@github.com:des0ps/react-krdz.git
cd react-krdz

The repository contains two applications:

  • The client, that is powered by React
  • The server, that uses Express and will serve the static files of the client in production

You should not really care of the server for now. It is configured to work with the deployment server, but we don't need to use it when developping.

To run the project, you will need to install the dependencies of the client:

cd client
npm install

The last command will populate the packages.json file in your current directory and create a node_modules directory.

Once you installed the project dependencies, you can start the project:

npm start

Webpack will take care of updating the browser for you, you should have the application launched automagically :)