![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.
#ALKS Node Client
Node client for interfacting with ALKS services.
var alks = require('alks-node');
Returns array of valid session durations.
alks.getDurations();
Creates a new session key with the provided information. Returns a JSON document.
var data = {
alksAccount: 'alksAccount',
alksRole: 'alksRole',
sessionTime: 2,
server: 'endpoint',
userid: 'my-network-id',
password: 'my-network-password'
};
alks.createKey(data, 'password', 2, {}, function(err, key){
if(err) console.error(err);
else console.log(JSON.stringify(key));
});
Returns a collection of accounts.
alks.getAccounts('server', 'username', 'password', {}, function(err, accounts){
if(err) console.error(err);
else console.log(JSON.stringify(accounts));
});
Returns a AWS console URL for a given key. The URL is good for 15 minutes.
alks.generateConsoleUrl(alksKey, {}, function(err, url){
if(err) console.error(err);
else console.log('The console URL is: %s', url);
});
Returns a list of current IAM role types.
Generates a new session for use in creating IAM roles and console sessions.
Creates a new IAM role, provided account must contain valid ALKS IAM session.
Deletes a previously created IAM role, provided account must contain valid ALKS IAM session.
Creates a new longterm access key with the provided information. Returns a JSON document.
var data = {
alksAccount: 'alksAccount',
alksRole: 'alksRole',
server: 'endpoint',
userid: 'my-network-id',
password: 'my-network-password'
};
alks.createLongTermKey(data, 'password', 'iamUser', {}, function(err, ltk){
if(err) console.error(err);
else console.log(JSON.stringify(ltk));
});
Deletes a previously created longterm key role, provided account must contain valid ALKS IAM session.
var data = {
alksAccount: 'alksAccount',
alksRole: 'alksRole',
server: 'endpoint',
userid: 'my-network-id',
password: 'my-network-password'
};
alks.deleteLongTermKey(data, 'password', 'iamUser', {}, function(err, ltk){
if(err) console.error(err);
else console.log(JSON.stringify(ltk));
});
FAQs
Node client for ALKS
The npm package alks-node receives a total of 47 weekly downloads. As such, alks-node popularity was classified as not popular.
We found that alks-node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 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.