[p5.js] What is p5.js

Get Started This page walks you through setting up a p5.js project and making your first sketch. If you'd like to start with the new p5.js Web Editor , you can jump down to Your First Sketch . Download and File Setup The easiest way to start is by using the empty example that comes with the p5.js complete download. If you look in index.html, you'll notice that it links to the file p5.js. If you would like to use the minified version (compressed for faster page loading), change the link to p5.min.js. A sample HTML page might look like this: < html > < head > < script src = " https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.3/p5.js " > </ script > < script src = " sketch.js " > </ script > </ head > < body > </ body > </ html > You can also start with this template from codepen . Your First Sketch Processing users may want to check out the Processi...