
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Create p5.js instance as a Vue component.
<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/vue-p5"></script>
<div id="app">
<vue-p5 v-on="this"></vue-p5>
</div>
<script>
new Vue({
el: '#app',
methods: {
setup(sketch) {
sketch.background('green');
sketch.text('Hello p5!', 20, 20);
}
}
});
</script>
npm install --save vue vue-p5
import Vue from 'vue';
import VueP5 from 'vue-p5';
export default {
methods: {
setup(sketch) {
sketch.background('green');
sketch.text('Hello p5!', 20, 20);
}
},
render(h) {
return h(VueP5, {on: this});
}
};
In the examples above v-on="this" and {on: this} are a short (and hacky) way to avoid handling every p5 event explicitly. You might want to use one of the other options:
<vue-p5 v-on="{setup, draw, keypressed}"></vue-p5>
<!-- which is equivalent to: -->
<vue-p5
@setup="setup"
@draw="draw"
@keypressed="keypressed">
</vue-p5>
on: {
setup: this.setup,
draw: this.draw,
keypressed: this.keypressed
}
See also v-on object syntax.
Every p5 event is exposed as a Vue event. The first argument is the sketch object used for drawing and everything else:
methods: {
draw(sk) {
// draw a line between the previous
// and the current mouse position
sk.line(sk.pmouseX, sk.pmouseY, sk.mouseX, sk.mouseY);
},
keypressed(sk) {
// convert the key code to it's string
// representation and print it
const key = String.fromCharCode(sk.keyCode);
sk.print(key);
}
}
Using methods makes it possible to access the current component:
// green background
data: {
color: [0, 255, 0]
},
methods: {
draw(sketch) {
sketch.background(...this.color);
}
}
Each event emitted by vue-p5 has the same name as the corresponding p5 event, but lowercase.
mouseclicked, not , not mouseClicked, not mouse-clicked.mouse_clicked
Currently all p5 events are supported, but there's an escape hatch for registering missing events:
<vue-p5 :additionalEvents="['windowResized']"></vue-p5>
In addition to p5 events, there's a @sketch event for importing an existing p5 sketch written in instance mode.
<vue-p5 @sketch="sketch"></vue-p5>
<script>
new Vue({
methods: {
sketch(sk) {
const clicks = [];
sk.mouseClicked = () => {
// save clicks to array
clicks.push({ x: sk.mouseX, y: sk.mouseY });
}
sk.draw = () => {
// draw a circle around each clicked position
clicks.forEach(({ x, y }) => {
sk.ellipse(x, y, 10, 10);
});
}
}
}
});
</script>
Remember to use arrow functions if you need this.
@sketch can be used in parallel with other events. Functions defined in the @sketch handler will always be called first.
Hello world: codepen
Webpack project: vue-p5-example
A game of Snake: vue-p5-snake
Feel free to open a new issue if you have a question or a feature request!
This project adheres to semver. Minor changes are breaking.
Use vue-p5@next to get a version with future updates.
LGPL-2.1
FAQs
Vue component wrapper for p5.js
The npm package vue-p5 receives a total of 153 weekly downloads. As such, vue-p5 popularity was classified as not popular.
We found that vue-p5 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.