
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
webview-native
Advanced tools
Native webview bindings for Node.js
Installing webview-native requires a supported version of Node and Rust.
You can install the project with npm. In the project directory, run:
$ npm install webview-native
This fully installs the project, including installing any dependencies and running the build.
const WebView = require("webview-native");
const webview = new WebView({
title: "Hello World",
content: `
<!DOCTYPE html>
<html>
<head>
<style>
* {
margin: 0;
padding: 0;
}
body {
background-color: #2e2e2e;
color: #ffffff;
text-align: center;
}
</style>
</head>
<body>
<h1>Hello from webview-native</h1>
<button onclick="external.invoke('closeWindow')">Close Window</button>
<script>
alert("Hello World");
</script>
</body>
</html>
`
});
webview.createWindow();

FAQs
Native webview bindings for Node.js
The npm package webview-native receives a total of 0 weekly downloads. As such, webview-native popularity was classified as not popular.
We found that webview-native 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.