
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.
Web-based SSH terminal server and client with xterm.js integration. Access remote shells through your browser or CLI.
npm install webssh
#server mode
import webssh from 'webssh';
// Using async IIFE for top-level await
const { serve } = webssh;
const server = serve({
port: 3000,
host: 'localhost'
});
server.start(() => {
console.log('🚀 WebSSH server running at http://localhost:3000');
});
#client mode
import webssh from 'webssh';
const { connect } = webssh;
// Connect with defaults (localhost:3000)
await connect();
// Or specify custom host/port
await connect('remote.server.com', 8080);
FAQs
Web-based SSH terminal server and client with xterm.js integration
The npm package webssh receives a total of 6 weekly downloads. As such, webssh popularity was classified as not popular.
We found that webssh 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.

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.