
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
@jemmyphan/react-native-nested-scrollview
Advanced tools
React native wrapper for android NestedScrollView
React native wrapper for android NestedScrollView. It's extract from react-native-bottom-sheet-behavior
$ npm install react-native-nested-scrollview
$ react-native link react-native-nested-scrollview
Edit the current files as follows.
MainApplication.java
+ import com.mohtada.nestedscrollview.NestedScrollViewPackage;
public class MainApplication extends Application implements ReactApplication {
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
+ new NestedScrollViewPackage()
);
}
}
android/app/build.gradle
dependencies {
compile fileTree(dir: "libs", include: ["*.jar"])
compile "com.android.support:appcompat-v7:23.0.1"
compile "com.facebook.react:react-native:+" // From node_modules
+ compile project(':react-native-nested-scrollview')
}
android/settings.gradle
include ':app'
+ include ':react-native-nested-scrollview'
+ project(':react-native-nested-scrollview').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-nested-scrollview/android')
You should use NestedScrollView instead of ScrollView.
import NestedScrollView from 'react-native-nested-scrollview';
render() {
return (
<NestedScrollView>
<NestedScrollView>
</NestedScrollView>
</NestedScrollView>
);
}
FAQs
React native wrapper for android NestedScrollView
We found that @jemmyphan/react-native-nested-scrollview 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.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.