Use Social Analyzer from the command line with Node.js
The Node.js CLI provides a fast command-line interface for analyzing user profiles across social media platforms. It supports the same detection capabilities as the web interface but is optimized for automation and scripting.
# Show only good matchesnode app.js --username "johndoe" --filter "good"# Show good and maybe matchesnode app.js --username "johndoe" --filter "good,maybe"# Show all resultsnode app.js --username "johndoe" --filter "all"
# Show only detected profilesnode app.js --username "johndoe" --profiles "detected"# Show detected and failed profilesnode app.js --username "johndoe" --profiles "detected,failed"# Show all profile statusesnode app.js --username "johndoe" --profiles "all"
[init] Detections are updated very often, make sure to get the most up-to-date ones[init] NodeJS Version Check-----------------------link : https://twitter.com/johndoerate : %100.00status : goodtitle : John Doe (@johndoe) / Twitterlanguage : English-----------------------
Node.js version errorEnsure you’re running Node.js version 13 or higher:
node --version
No results foundTry different variations of the username or use the web interface for more advanced detection options.Rate limitingIf you encounter rate limiting, reduce the number of websites checked or use --top with a lower number.