
Security News
GitHub Actions Checkout Now Blocks Risky pull_request_target Checkouts
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.
@replit/ruspty
Advanced tools
@replit/ruspty - PTY for JavaScript through Rust FFIA very thin wrapper around PTYs and processes.
const { Pty } = require('@replit/ruspty');
const pty = new Pty({
command: '/bin/sh',
args: [],
envs: {},
size: { rows: 24, cols: 80 },
onExit: (...result) => {
// TODO: Handle process exit.
},
});
const read = pty.read;
const write = pty.write;
read.on('data', (chunk) => {
// TODO: Handle data.
});
write.write('echo hello\n');
npm installnpm run buildnpm run testFollowing "Publish It" section from napi-rs docs:
git clean -f && npm install && npm run buildnpm version [major|minor|patch]x.y.z - this is how the CI decides to publish to npm!NPM_TOKEN is part of the repo secrets, generated like this.
FAQs
A very thin wrapper around PTYs and processes.
The npm package @replit/ruspty receives a total of 36,707 weekly downloads. As such, @replit/ruspty popularity was classified as popular.
We found that @replit/ruspty demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 22 open source maintainers 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
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.