This downloads the current canvas in original size as PNG to your computer from pxls.space. If you don't know what it is, here is the TL;DR:
You can set one colored pixel on a 2000x2000px canvas every 3 minutes. The progress is synced and thousands of people color the canvas to create some art.
This was seen first on reddit /r/place but it has ended, so there is pxls.space as alternative.
Litte node script that downloads the current canvas and saves it as PNG-file. Great as automation for desktop backgrounds, magic-mirror modules or anything else.
npm install
or yarn install
node app.jsThat's it. It takes a short time and saves it to
savedImages
.
const Nightmare = require('nightmare'); | |
const moment = require('moment'); | |
const fs = require('fs'); | |
const nightmare = Nightmare(); | |
nightmare.goto('http://pxls.space').wait('#board').wait(500).evaluate(() => { | |
return document.querySelector('#board').toDataURL(); | |
}).end().then((dataURI) => { | |
var filename = 'savedImages/' + moment().format('YYYY-MM-DD_HH-mm-ss') + '.png'; | |
var base64Data = dataURI.replace(/^data:image\/png;base64,/, ''); | |
fs.writeFile(filename, base64Data, 'base64', (err) => { | |
console.error(err); | |
}); | |
}).catch((error) => { | |
console.error('Failed to load:', error); | |
}); |