A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Creating a module with existing Nodejs client?
-
Is it possible to create a module with a existing Nodejs Client?
-
@Baxer An API (and client) give you a way to ask for information; it doesn’t stipulate what information to request, or how to display it. However, you could use
MagicMirror-Module-Template
then runnpm install --save open-shl
within your module folder to installopen-shl
.You would then add the code featured here to load the API and start querying data. I recommend loading the API in your
node_helper.js
and passing back the data to display viathis.sendSocketNotification(notification, payload)
. -
@ninjabreadman Thanks for the explanation!!