New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

replchat.js

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

replchat.js

A library for making bots with replchat (https://replchat.vapwastaken.repl.co/)

  • 1.0.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-85.71%
Maintainers
1
Weekly downloads
 
Created
Source

About

replchat.js is a blazingly fast library for making replchat bots that is Object-oriented

Installation

npm install replchat.js

Examples

You will need to get an auth token for your bot however, in the future there may be a better method

Basic Bot:

const ReplBot = require('replbot.js')

const bot = new ReplBot()

bot.on('ready', () => {
  console.log('Bot is logged in!')
})

bot.login('your-auth-token')

After this we can add a simpl command system:

const ReplBot = require('replbot.js')

const bot = new ReplBot()

const config = {
  prefix: '!'
}

const commands = [
  'ping'
]

bot.on('ready', () => {
  console.log('Bot is logged in!')
})

bot.on('message', (message) => {
  if (!message.content.startsWith(config.prefix)) return;

  var fullCommand = message.content.substr(config.prefix.length).split(" ")
  var command = fullCommand[0]
  var args = fullCommand.splice(0, 1)

  if (commands.includes(command)) {
    if (command === 'ping')
      bot.send('pong!')
  } else
    bot.send(`Invalid Command! Use \`${config.prefix}help\` for a list of valid commands!`)
})

bot.login('your-auth-token')

Keywords

FAQs

Package last updated on 22 Apr 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc