🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

p5js-node

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

p5js-node

P5.js port for nodejs canvas

1.3.4
unpublished
latest
Source
npm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

p5js-node

p5js-node a Node.js implementation of p5.js for drawing to canvas with nodejs. (using node-canvas)

The p5js.org website contains an extensive overview of the project, community, documentation, and examples.

Difference to node-p5

It doesn't use jsdom and is actively maintained always up to date fork

Get Started

Get familiar with p5js: https://p5js.org/get-started

Install p5-node

npm i p5js-node

Usage

const p5 = require('p5js-node')
const path = require("path")
const fs = require("fs");

new p5((p)=>{
	p.setup = function() {
		p.createCanvas(1920,1080);
	};

	p.draw = function() {
		p.background(0);
		p.fill(255);
		p.rect(10,10, 50, 50);
		fs.promises.writeFile(__path.join(__dirname,"..","test.png"), p.canvas.toBuffer())
	};
})

Notice

This is a fork of p5.js for nodejs which doesn't support all browser apis.

The node-canvas api is documented here.

Not supported (*yet)

  • Audio
  • WebGL
  • Dom
  • Acceleration
  • Keyboard
  • Mouse
  • Touch
  • Events
  • IO (use npm packages instead)

Changes

Canvas:
+ toBuffer({ mimeType: "image/png" || "image/jpeg" || "raw", quality: 1 })
Environment:
- describe()
- describeElement()
- fullscreen()
- getURL()
- getURLPath()
- getURLParams()
- getURLParams()
- gridOutput()
- textOutput()
Data:
- storeItem()
- getItem()
- clearStorage()
- removeItem()
DOM:
- select()
- selectAll()
- removeElements()
- changed()
- input()
- createDiv()
- createP()
- createSpan()
- createImg()
- createA()
- createSlider()
- createButton()
- createCheckbox()
- createSelect()
- createRadio()
- createColorPicker()
- createInput()
- createFileInput()
- createVideo()
- createAudio()
- VIDEO
- AUDIO
- createCapture()
- createElement()
- p5.MediaElement
- p5.File

Issues

If you have found a bug in the original p5.js library, you can file it here here.

If you found a bug in the node implementation, you can file it here here.

Learning

Check out p5js.org for lots more! Here are some quick-links to get started learning p5.js.

FAQs

Package last updated on 17 Jun 2021

Did you know?

Socket

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.

Install

Related posts