Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
jsevents-js
Advanced tools
download JSEvents.min.js and add to the sript in the head
tag of your web application.
<script type="text/javascript" src="path-to-JSevents.min.js">
npm install jsevents-js
var JSEvents = require('jsevents-js');
/**
* @name addEventListener
* @param {string} name
* @param {function} callback
* @param {object} scope
* @description this function registeres the event
* @returns {null} this function does not return anything
*/
JSEvents.addEventListener(type,callback,scope);
/**
* @name removeEventListener
* @param {string} name
* @param {function} callback
* @param {object} scope
* @description this function will remove registered the event
* @returns {null} this function does not return anything
*/
JSEvents.removeEventListener(type,callback,scope);
/**
* @name hasEventListener
* @param {string} name
* @param {function} callback
* @param {object} scope
* @description this function check and return true/false if the event has
* any registered listener
* @returns {boolean} return true if the event has any listener
*/
var result = JSEvents.hasEventListener(name,callback,scope);
/**
* @name dispatchEvent
* @param {string} name
* @param {any} data
* @description this function check and return true/false if the event has
* any registered listener
* @returns {null} this function will fire the registered event
*/
JSEvents.dispatchEvent(name,data)
/**
* @name getRegisteredEvents
* @description this function return all the events registered in the store
* @returns {object} this getter will return all the registered events
*/
var allEvents=JSEvents.getRegisteredEvents()
var testOb={
add:function(){
// last parameter is the scope.
// all params are mandatory
JSEvents.addEventListener('TEST_OB_FN',this.cb,this);
},
dispatch:function(){
JSEvents.dispatchEvent('TEST_OB_FN','hi')
},
cb:function(event,data){
console.log(data)
},
getAll:function(){
console.log(JSEvents.getRegisteredEvents())
}
remove:function(){
// all are mendatory
JSEvents.removeEventListener('TEST_OB_FN',this.cb,this);
}
}
testOb.add();
testOb.dispatch();
testOb.getAll();
var cb=function(event,param1,param2,param3,param4){
console.log(param1,param2,param3,param4);
}
JSEvents.addEventListener('NAME',cb,window);
JSEvents.dispatchEvent('NAME','hi','anything','nothing',[1,2,3]);
JSEvents.addEventListener('NAME',function(){
// this is wrong.
},window);
JSEvents.removeEventListener('NAME',function(){
// this is wrong.
},window);
var cb=function(ev){
}
JSEvents.addEventListener('NAME',cb,window); // this is correct
JSEvents.removeEventListener('NAME',cb,window); // this is correct
FAQs
a small javascript library to create custom events
We found that jsevents-js 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.