Desktop automation for the Bun runtime. Currently works on Mac.
Bunbot uses RobotGo via bun:ffi. Please see RobotGo's requirements here.
bun add bunbotimport Bunbot from 'bunbot'
const bb = new Bunbot()
// Click
bb.click()
// Get mouse position coordinates
const mousePosition = bb.getMousePosition()
// Move mouse
bb.moveMouse(200, 400)
// Move mouse smoothly
bb.moveMouseSmooth(200, 400)
// Scroll mouse
bb.scrollMouse(100, 200)import Bunbot from 'bunbot'
const bb = new Bunbot()
// Type a string
bb.type('Hello world!')
// Tap a key
bb.tap('i', 'alt', 'command')import Bunbot from 'bunbot'
const bb = new Bunbot()
// Get screen size
const screenSize = bb.getScreenSize()
// Get scale size
const scaleSize = bb.getScaleSize()MIT