Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@azure/cognitiveservices-luis-runtime
Advanced tools
LUISRuntimeClient Library with typescript type definitions for node.js and browser.
This package contains an isomorphic SDK for LUISRuntimeClient.
npm install @azure/cognitiveservices-luis-runtime
npm install @azure/ms-rest-nodeauth
import * as msRest from "@azure/ms-rest-js";
import * as msRestNodeAuth from "@azure/ms-rest-nodeauth";
import { LUISRuntimeClient, LUISRuntimeModels, LUISRuntimeMappers } from "@azure/cognitiveservices-luis-runtime";
const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];
msRestNodeAuth.interactiveLogin().then((creds) => {
const client = new LUISRuntimeClient(creds, subscriptionId);
const appId = ec7b1657-199d-4d8a-bbb2-89a11a42e02a;
const versionId = "testversionId";
const predictionRequest: LUISRuntimeModels.PredictionRequest = {
query: "testquery",
options: {
datetimeReference: new Date().toISOString(),
overridePredictions: true
},
externalEntities: [{
entityName: "testentityName",
startIndex: 1,
entityLength: 1,
resolution: {}
}],
dynamicLists: [{
listEntityName: "testlistEntityName",
requestLists: [{
name: "testname",
canonicalForm: "testcanonicalForm",
synonyms: ["testsynonyms"]
}]
}]
};
const verbose = true;
const showAllIntents = true;
const log = true;
client.prediction.getVersionPrediction(appId, versionId, predictionRequest, verbose, showAllIntents, log).then((result) => {
console.log("The result is:");
console.log(result);
});
}).catch((err) => {
console.error(err);
});
npm install @azure/ms-rest-browserauth
See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to Azure in the browser.
<!DOCTYPE html>
<html lang="en">
<head>
<title>@azure/cognitiveservices-luis-runtime sample</title>
<script src="node_modules/@azure/ms-rest-js/dist/msRest.browser.js"></script>
<script src="node_modules/@azure/ms-rest-browserauth/dist/msAuth.js"></script>
<script src="node_modules/@azure/cognitiveservices-luis-runtime/dist/cognitiveservices-luis-runtime.js"></script>
<script type="text/javascript">
const subscriptionId = "<Subscription_Id>";
const authManager = new msAuth.AuthManager({
clientId: "<client id for your Azure AD app>",
tenant: "<optional tenant for your organization>"
});
authManager.finalizeLogin().then((res) => {
if (!res.isLoggedIn) {
// may cause redirects
authManager.login();
}
const client = new Azure.CognitiveservicesLuisRuntime.LUISRuntimeClient(res.creds, subscriptionId);
const appId = ec7b1657-199d-4d8a-bbb2-89a11a42e02a;
const versionId = "testversionId";
const predictionRequest = {
query: "testquery",
options: {
datetimeReference: new Date().toISOString(),
overridePredictions: true
},
externalEntities: [{
entityName: "testentityName",
startIndex: 1,
entityLength: 1,
resolution: {}
}],
dynamicLists: [{
listEntityName: "testlistEntityName",
requestLists: [{
name: "testname",
canonicalForm: "testcanonicalForm",
synonyms: ["testsynonyms"]
}]
}]
};
const verbose = true;
const showAllIntents = true;
const log = true;
client.prediction.getVersionPrediction(appId, versionId, predictionRequest, verbose, showAllIntents, log).then((result) => {
console.log("The result is:");
console.log(result);
}).catch((err) => {
console.log("An error occurred:");
console.error(err);
});
});
</script>
</head>
<body></body>
</html>
FAQs
LUISRuntimeClient Library with typescript type definitions for node.js and browser.
The npm package @azure/cognitiveservices-luis-runtime receives a total of 936 weekly downloads. As such, @azure/cognitiveservices-luis-runtime popularity was classified as not popular.
We found that @azure/cognitiveservices-luis-runtime demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.