![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
wickrio_addon
Advanced tools
Wickr's Node.js C++ Addon for a JavaScript API interface
This is the Node.js C++ Addon that provides access to Wickr's bot client. This WickrIO addon interface supports a set of Wickr client functionality that you can access via your Javascript code. You will be able to do the following Wickr operations:
Before you can use the WickrIO addon, you will need to have Wickr's bot client. The WickrIO bot packages contain several sample bots that use this addon.
NOTE: The WickrIO bot package is not currently available to the general public.
Interaction with the WickrIO Node.js addon has the following sequence of operations:
The following is an example of how to interact with the WickrIO bot client using the WickrIO Node.hs addon:
var addon = require('wickrio_addon');
module.exports = addon;
var client = "bot_username";
var response = addon.clientInit(client);
var vGroupID = 'vGroupID_number';
var members = ['wickr_username'];
var moderators = ['wickr_username'];
var bor = "600"; //OPTIONAL
var ttl = "1000"; //OPTIONAL
var title = "Example Room";
var description = "The Good Room";
var message = "Testing time!"
var attachmentURL = "<https://www.alsop-louie.com/wp-content/uploads/2017/03/wickr-logo-2-crop.png>"
var displayname = "Logo.png";
var cmd1 = addon.cmdSend1to1Message(members, message, ttl, bor);
//if successful should print "Sending message"
console.log(cmd1);
var cmd2 = addon.cmdAddRoom(members, moderators, title, description, ttl, bor);
//if successful should print a json with vgroupid of the newly created room
console.log(cmd2);
//Notice: in this example the ttl and bor arguments are omitted and command will still work
var cmd3 = addon.cmdSendRoomAttachment(vGroupID, attachmentURL, displayname);
//if successful should print "Sending message"
console.log(cmd3);
console.log(addon.closeClient());
FAQs
Wickr's Node.js C++ Addon for a JavaScript API interface
The npm package wickrio_addon receives a total of 0 weekly downloads. As such, wickrio_addon popularity was classified as not popular.
We found that wickrio_addon demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.