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.
minsky-base
Advanced tools
Provide a solid base for most classes withing the MINSKY framework.
It extends Core.js by adding the BLManager. Base will be used most of the time, only a handful of classes will directly extend from Core.js. The BLManager will only be constructed the moment it is requested for use internally or externally thanks to the getter. Base.js delays the auto init process so it will force the code to run initialize at the end of the construction process automatically.
Class type: Manager
Base is not intended to be constructed as is. Classes should use it as base to extend from, just like Core.js is supposed to be used.
// imports
import '$dep/Base';
// private statics
// class definition
export default class CustomClass extends Base {
// constructor
constructor (args, objectName = 'Custom Class') {
// run super constructor
super(args, objectName);
}
// methods
destroy() {
// super destroy
super.destroy();
}
}
// private or exported util methods
// private handlers
… Core.js parameters
… Core.js options
Type: BLManager
Default: instance
An instance of the BLManager to facilitate scope binding within the classes. It tries to closely match conventional Event scopes used in other languages.
… Core.js properties
… Core.js methods
FAQs
Base for minsky classes
The npm package minsky-base receives a total of 9 weekly downloads. As such, minsky-base popularity was classified as not popular.
We found that minsky-base 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.