An open API service indexing awesome lists of open source software.

https://github.com/imightexist/collabvm-bot


https://github.com/imightexist/collabvm-bot

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# collabvm-bot
client side bot

# "hosting" the bot on your browser
javascript:x=document.createElement("script"); xml = new XMLHttpRequest(); xml.open( "GET", "https://raw.githubusercontent.com/imightexist/collabvm-bot/main/bot.js", false ); xml.send( null ); x.id = "bot"; x.innerHTML=xml.responseText; document.head.appendChild(x);

# hosting the bot with nodejs
1. first install nodejs obviously
2. do npm install websocket
3. download the bot
4. do node nodejs.js

# make one yourself?
eh sure why not, example.js is kinda customizable for you to make a bot

Type this in console:
javascript:x=document.createElement("script"); xml = new XMLHttpRequest(); xml.open( "GET", "https://raw.githubusercontent.com/imightexist/collabvm-bot/main/example.js", false ); xml.send( null ); x.id = "bot"; x.innerHTML=xml.responseText; document.head.appendChild(x);