kiennt
kiennt

Reputation: 91

How can I build cannon.js source code to get cannon.js lib

The cannon.js project is in github url: https://github.com/schteppe/cannon.js

But I cannot find anyways to build this source code to get cannon.js library in binary folder.

Can you tell me the way to build this source code?

Upvotes: 0

Views: 183

Answers (1)

schteppe
schteppe

Reputation: 2084

Make sure you have git, Node.js, and grunt installed.

On the command line, do the following:

git clone https://github.com/schteppe/cannon.js.git;
cd cannon.js;
npm install;
grunt;

Upvotes: 1

Related Questions