
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
adb-record-screen
Advanced tools
Screen recording function using Android Debug Bridge (
adb).
This is a thin wrapper around adb and has no other dependencies.
npm install adb-record-screen
const recordScreen = require('adb-record-screen')
const recording = recordScreen('/tmp/test.mp4', {
bugreport: true
})
recording.promise
.then(result => {
// Screen recording is done
process.stdout.write(result.stdout)
process.stderr.write(result.stderr)
})
.catch(error => {
// Screen recording has failed
console.error(error)
})
// As an example, stop the screen recording after 5 seconds:
setTimeout(() => recording.stop(), 5000)
const defaultOptions = {
serial: undefined, // Use device with given serial
transportID: undefined, // Use device with given transport ID
hostname: undefined, // Android device hostname
port: 5555, // Android device port
waitTimeout: 5000, // Device wait timeout (ms), set to 0 to disable wait
bugreport: undefined, // Set to `true` to add additional info to the video
size: undefined, // WIDTHxHEIGHT, defaults to native device resolution
bitRate: 4000000, // Bits per second, default is 4Mbps
timeLimit: 180, // Time limit (s), maximum is 180 (3 mins)
pullDelay: 200 // Delay (ms) before pulling the video file
}
npm install
npm test
Released under the MIT license.
FAQs
Screen recording function using Android Debug Bridge (adb).
We found that adb-record-screen 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.