The Collaborative Illustrator is a simplified illustrator allowing collaboration between peers with WebRTC.
▶️ Collaborative Illustrator web application
📖 Collaborative Illustrator Documentation
The Collaborative Illustrator is written in TypeScript, a language that can be compile to JavaScript. It uses D3 for manipulating the DOM and Browserify to pack all the output JavaScript files into a single script.
To build it on your own machine, you need npm.
Once this is done, open a terminal and run the following commands:
git clone https://github.com/AChaffangeon/collaborative-illustrator.git
to clone this repository.cd collaborative-illustrator
to change you working directory to the clone you just made.npm install -g grunt-cli
to install the CLI of Grunt, the build system we use.npm install
to install all the other dependencies (listed in package.json
).grunt
to finally build the application.The build
folder will contain your own build.
To create your own documentation, use grunt make-doc
at the root of the project.
Generated using TypeDoc