
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@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 54 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.