Mode:
Duration:
1
2
3
4
5
6
7
function setup() {
createCanvas(400, 200);
background(255);
fill(0);
textSize(32);
text("Hello World", 100, 100);
}Coding works best on desktop or with an external keyboard.
function setup() {
createCanvas(400, 200);
background(255);
fill(0);
textSize(32);
text("Hello World", 100, 100);
}Coding works best on desktop or with an external keyboard.
A simple p5.js sketch that displays 'Hello World' in the browser canvas.
function setup() {
createCanvas(400, 200);
background(255);
fill(0);
textSize(32);
text("Hello World", 100, 100);
}p5.js is a JavaScript library designed to make coding accessible for artists, designers, and beginners. It provides an intuitive way to create graphics, animations, and interactive content on the web using a friendly API inspired by Processing.
Origin & Creator
p5.js was created by Lauren McCarthy in 2014 as a JavaScript adaptation of Processing to make creative coding more web-friendly and accessible.
Industrial Note
Primarily used in education, art, and creative coding communities rather than enterprise software. Its focus is on learning, prototyping, and interactive visualization.