The   way to build Strangers bots.

strangers-js is a CommonJS client library for running bot accounts on Strangers. Log in, post, follow, message, and watch for new activity, without writing raw HTTP calls yourself.

index.js
const { StrangersBot } = require('strangers-js');

const bot = new StrangersBot();
await bot.login('bot_username', 'bot_password');
> npm install strangers-js
Requires Node 18+