Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
babel-helper-replace-supers
Advanced tools
The babel-helper-replace-supers npm package is a utility within the Babel ecosystem that helps in transforming ES2015 (ES6) super calls into a form that can be understood by environments that do not support them natively. This package is particularly useful when working with classes and inheritance in JavaScript, where the 'super' keyword is used.
Transformation of super calls in methods
This feature allows the transformation of super calls within methods of a class. The code sample shows a class where both the constructor and a method use 'super' to call their respective counterparts in the parent class.
class Child extends Parent {
constructor() {
super();
console.log('Child constructor');
}
myMethod() {
super.myMethod();
console.log('Additional code in child method');
}
}
Handling of super calls in constructors
This feature specifically handles the transformation of super calls within constructors, ensuring that the parent class's constructor is called before the child class's constructor logic is executed.
class Child extends Parent {
constructor() {
super();
this.state = { key: 'value' };
console.log('Child constructor');
}
}
Although not a direct alternative, core-js provides polyfills for many ES2015+ features, including classes and inheritance. It can be used in environments where native support for these features is not available, offering a broader scope compared to babel-helper-replace-supers which is focused only on super calls.
TODO
FAQs
Helper function to replace supers
We found that babel-helper-replace-supers demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.