Skip to content

Installing for development

Tom Jenkinson edited this page Dec 20, 2015 · 2 revisions

Clone the project:

git clone https://github.com/clappr/clappr.git

Then enter the project directory and install the dependencies:

npm install

Make your changes and run the tests (which hopefully all still pass!):

npm test

Build your own version:

npm run build

Check the result on dist/ folder.


You can also npm run start which will start serving the demo page (by default at "http://127.0.0.1:8080/", but listening on all interfaces) and will automatically watch the source files and rebuild as you make changes.