![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.
activetick
Advanced tools
ActiveTick API addon for Node.js
Author: Jae Yang - [dchem] (https://keybase.io/dchem)
npm install activetick
.npm install node-gyp -g
sudo apt-get install unzip
mingw-get install msys-unzip
mingw-get install msys-wget
npm install activetick
For Windows with MSVS 2013:
npm install activetick --msvs_version=2013
For Windows with MSVS 2012:
npm install activetick --msvs_version=2012
Alternatively, include GYP_MSVS_VERSION=2012
or GYP_MSVS_VERSION=2013
in
environment variables for Windows.
node-gyp rebuild
node-gyp --msvs_version=2012 rebuild
var addon = require('activetick');
var messageIds = addon.messageIds;
var api = new addon.NodeActivetick();
var activetickCb = function (data) {
console.log(JSON.stringify(data,null,2));
};
// See messageId.js for message types to be tracked
Object.keys(messageIds).forEach(function (messageId) {
api.handlers[messageId] = activetickCb;
});
// Don't put credentials in your scripts. Make sure you export
// them as environment variables
var connected = api.connect( process.env.ATAPIKEY,
"activetick1.activetick.com",
5000,
process.env.ATUID,
process.env.ATPWD );
if (connected) {
api.beginProcessing();
}
For more details, see activetick.js or run jsdoc on the package directory
.getSessionHandle()
.closeAllATRequests()
.closeATRequest()
.sendATBarHistoryDbRequest( request )
.sendATLoginRequest( request )
.sendATMarketHolidaysRequest( request )
.sendATMarketMoversDbRequest( request )
.sendATMarketMoversStreamRequest( request )
.sendATQuoteDbRequest( request )
.sendATQuoteStreamRequest( request )
.sendATTickHistoryDbRequest( request )
.sendATSectorListRequest( request )
.sendATConstituentListRequest( request )
.connect( apiKey, serverAddr, port, userid, passwd )
Copyright (c) 2016 Jae Yang. See LICENSE file for license rights and limitations (MIT).
FAQs
Activetick API addon for NodeJS
The npm package activetick receives a total of 6 weekly downloads. As such, activetick popularity was classified as not popular.
We found that activetick 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
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.