
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.
lwjgl-bridge
Advanced tools
A Node.js bridge for LWJGL (Lightweight Java Game Library) that provides access to LWJGL JAR APIs from JavaScript.
A Node.js bridge for LWJGL (Lightweight Java Game Library) that provides access to LWJGL JAR APIs from JavaScript using java-bridge.
.jar filesjava, java-parser, java-caller, and java-lint supportnpm install lwjgl-bridge
🚀 Usage
js
Copy code
const lwjgl = require("lwjgl-bridge");
(async () => {
// Print Java version
lwjgl.caller.printVersion();
// Initialize GLFW
await lwjgl.bridge.init();
// Create a window
const window = await lwjgl.bridge.createWindow(800, 600, "Hello LWJGL");
// Main loop
while (true) {
await lwjgl.bridge.clear(); // Clear screen
await lwjgl.bridge.swapBuffers(window); // Swap buffers
await lwjgl.bridge.pollEvents(); // Handle events
}
// Cleanup
await lwjgl.bridge.terminate();
})();
📜 License
MIT © Izhan
FAQs
A Node.js bridge for LWJGL (Lightweight Java Game Library) that provides access to LWJGL JAR APIs from JavaScript.
We found that lwjgl-bridge demonstrated a healthy version release cadence and project activity because the last version was released less than 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.