
Security News
pnpm 11.5 Adds Support for Recognizing npm Staged Publishes
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.
@andste82/telnet-tty
Advanced tools
A TTY-compatible Telnet interface for node.js
Telnet-TTY consists of the following functions:
Each connection to the telnet server is mapped by an instance of the TelnetSession class. This class implements the node.js Duplex interface of the node:stream module. In addition, some necessary TTY functions have been added to comply with the node:tty interface.
Note: this module is still at a very early stage!
This example demonstrates how a telnet-tty session can be connected to the node:readline interface of node.js.
import { createInterface } from 'node:readline';
import { TelnetServer } from '@andste82/telnet-tty';
const server = new TelnetServer();
server.on('connection', (session) =>
{
const rl = createInterface(
{
input: session,
output: session,
prompt: 'PROMPT> ',
});
rl.prompt();
rl.on('line', (line) =>
{
switch (line.trim())
{
case 'hello':
session.write('world!\n');
break;
default:
session.write(`Say what? I might have heard '${line.trim()}'\n`);
break;
}
rl.prompt();
});
rl.on('error', console.log);
session.on('resize', () =>
{
console.log(session.getWindowSize());
});
});
server.listen(23);
FAQs
TTY interface for Telnet sessions
We found that @andste82/telnet-tty 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
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.