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.
babel-private-properties
Advanced tools
A babel plugin which will convert all private properties (identifiers) to md5 hashes.
When building a library it is common practice to mark properties as private by prefixing them with an underscore.
This plugin appends a few characters to any properties that are prefixed with an underscore to make it even clearer that these properties are intended for internal use only. The characters are the first part of an md5 hash of the identifier. You can provide a custom salt making it possible to generate different hashes for each build.
npm install --save-dev babel-private-properties
Transforms
function HelloLib(name) {
// don't want users to access this directly
this._name = name;
}
// don't want users to call this directly
HelloLib.prototype._getName = function() {
return this._name;
};
// This method is public and should be called externally
HelloLib.prototype.sayHello = function() {
var name = this._getName();
console.log("Hello "+name+"!");
};
module.exports = HelloLib;
to
function HelloLib(name) {
// don't want users to access this directly
this._name9aca = name;
}
// don't want users to call this directly
HelloLib.prototype._getName411c = function () {
return this._name9aca;
};
// This method is public and should be called externally
HelloLib.prototype.sayHello = function () {
var name = this._getName411c();
console.log("Hello " + name + "!");
};
module.exports = HelloLib;
{
"plugins": ["babel-private-properties"]
}
Set plugin options using an array of [pluginName, optionsObject]
.
{
"plugins": [["babel-private-properties", {
"prefix": "_",
"salt": "salt",
"hashLength": 4,
"replaceCompletely": false
}]]
}
'module': {
'loaders': [{
'loader': 'babel-loader',
'test': /\.js$/,
'exclude': /node_modules/,
'query': {
'plugins': ['babel-private-properties']
}
}]
}
If the replaceCompletely
option is true
the identifiers will be replaced completley with its hash. This isn't recommended as even though it's incredibly unlikely a hash collision could occur. Keeping the original text prevents this.
If you supply the config with webpack you can change the salt dynamically.
'module': {
'loaders': [{
'loader': 'babel-loader',
'test': /\.js$/,
'exclude': /node_modules/,
'query': {
'plugins': [["babel-private-properties", {
"salt": Math.random() // Each build will have unique private property names
}]]
}
}]
}
FAQs
A babel plugin which will convert all private properties (identifiers) to md5 hashes.
The npm package babel-private-properties receives a total of 1 weekly downloads. As such, babel-private-properties popularity was classified as not popular.
We found that babel-private-properties 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.