Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
This is a Node.js module that can be used to send ArtDMX packages to an Art-Net node.
connect, set channel 1 to 255, disconnect.
var options = {
host: '172.16.23.15'
}
var artnet = require('artnet')(options);
// set channel 1 to 255 and disconnect afterwards.
artnet.set(1, 255, function (err, res) {
artnet.close();
});
The set method can set multiple channels at once:
Use an array to set subsequent channels...
// set channel 100 to 10, channel 101 to 20 and channel 102 to 30
artnet.set(100, [10, 20, 30]);
...if you want to keep certain channels unchanged set them to null
// set channel 50 to 255 and channel 52 to 127
artnet.set(50, [255, null, 127]);
you can omit the channel, it defaults to 1
// Set channel 1 to 255 and channel 2 to 127:
artnet.set([255, 127]);
This lib throttles the maximum send rate to ~40Hz. Unchanged data is refreshed every ~4s.
"255.255.255.255"
)6454
)4000
)false
)Every parameter except the value(s) is optional. If you supply a universe you need to supply the channel also. Defaults: universe = 0, channel = 1
Callback is called with (error, response) params. If error and response are null data remained unchanged and therefore nothing has been sent.
Closes the connection and stops the send interval.
Change the Art-Net hostname/address after initialization
The MIT License (MIT)
Copyright (c) 2014, 2015 hobbyquaker
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Art-Net™ Designed by and Copyright Artistic Licence Holdings Ltd.
FAQs
Module to send commands to an Art-Net node
The npm package artnet receives a total of 53 weekly downloads. As such, artnet popularity was classified as not popular.
We found that artnet 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.