
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@essent/nativescript-iadvize
Advanced tools
A NativeScript plugin for integration of iAdvize chat into Android/iOS app.
This is a plugin to show the conversation from a iAdvize chat, using the iAdvize SDK (Android v2.2.2, iOS v2.2.5).
Run the following command from the root of your project:
npm install @essent/nativescript-iadvize
When the user logs in to the your app call activate
with your credentials (our example home.component.ts):
IAdvize.activate(XXXX, 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX', 'userId', () => {
console.log('IAdvize conversation activated.');
});
To open the chat window call presentChat()
:
IAdvize.presentChat();
To hide default chat button call hideDefaultChatButton()
:
IAdvize.hideDefaultChatButton();
To customize the chatbox UI call customize()
:
const configuration: ChatConfiguration = {
automaticMessage: 'Any question? Say Hello to Smart and we will answer you as soon as possible! 😊',
font: 'fontPath',
incomingMessageAvatar: 'avatar-icon',
mainColor: '#4103fc',
navigationBarBackgroundColor: '#4103fc',
navigationBarMainColor: '#ffffff',
navigationBarTitle: 'Chat Title',
};
IAdvize.customize(configuration);
To preserve the confidentiality of user conversation call logout()
.
IAdvize.logout();
To add a listener to be informed in real time about conversation events call registerConversationListener()
.
IAdvize.registerConversationListener(
(url: string) => {
console.log('Handle clicked url - ' + url);
return false;
},
(hasOngoingConversation: boolean) => {
console.log('Ongoing conversation status changed - ' + hasOngoingConversation);
}
);
To be informed of chat messages received when your app is not running call registerPushToken()
IAdvize.registerPushToken('your-token', isProduction);
FAQs
iAdvize plugin for NativeScript.
The npm package @essent/nativescript-iadvize receives a total of 0 weekly downloads. As such, @essent/nativescript-iadvize popularity was classified as not popular.
We found that @essent/nativescript-iadvize demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 77 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.