All Projects → scholtzm → Vapor

scholtzm / Vapor

Licence: mit
☁️ Lightweight Steam client framework for node.js

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Vapor

Messenger
Package messenger is used for making bots for use with Facebook messenger
Stars: ✭ 278 (+164.76%)
Mutual labels:  bot, framework, client
Slacky
🐍 The BEST Slack Selfbot on GitHub | No Bot User, Acts Like It's You! ⭐️
Stars: ✭ 80 (-23.81%)
Mutual labels:  bot, automation
Spam Bot 3000
Social media research and promotion, semi-autonomous CLI bot
Stars: ✭ 79 (-24.76%)
Mutual labels:  bot, automation
Vkbot
Простой разговорный бот на PHP
Stars: ✭ 88 (-16.19%)
Mutual labels:  bot, automation
Create Discord Bot
Create Discord bots using a simple widget-based framework.
Stars: ✭ 70 (-33.33%)
Mutual labels:  bot, framework
Tf2 Automatic
A free and open source, fully automated TF2 trading bot, advertising on backpack.tf using prices from prices.tf
Stars: ✭ 74 (-29.52%)
Mutual labels:  bot, steam
Novuscore
A modern take on WoW emulation
Stars: ✭ 88 (-16.19%)
Mutual labels:  framework, client
Webwhatsappbot
Core to automatize whatsapp - working 11/2018
Stars: ✭ 59 (-43.81%)
Mutual labels:  bot, automation
Coteafs Appium
📱 Wrapper Appium Framework in Java which supports Automation of Mobile and Tablet apps.
Stars: ✭ 93 (-11.43%)
Mutual labels:  automation, framework
Telebot.nim
Async client for Telegram Bot API in pure Nim [Bot API 5.1]
Stars: ✭ 93 (-11.43%)
Mutual labels:  bot, client
Wa Automate Nodejs
💬 🤖 The most advanced NodeJS WhatsApp library for chatbots with advanced features. Be sure to 🌟 this repository for updates!
Stars: ✭ 1,326 (+1162.86%)
Mutual labels:  bot, framework
Matrixcli
Command line matrix client
Stars: ✭ 69 (-34.29%)
Mutual labels:  bot, client
Talkify
Talkify is an open source framework with an aim to standardize and model conversational AI enabling development of personal assistants and chat bots. The mission of this framework is to make developing chat bots and personal assistants as easy as spinning up a simple website in html.
Stars: ✭ 68 (-35.24%)
Mutual labels:  bot, framework
Ps4remoteplayinterceptor
A small .NET library to intercept and inject controls on PS4 Remote Play for Windows
Stars: ✭ 76 (-27.62%)
Mutual labels:  bot, automation
Core
The core YAMDBF Framework
Stars: ✭ 63 (-40%)
Mutual labels:  bot, framework
Maze
Maze Applied Reinforcement Learning Framework
Stars: ✭ 85 (-19.05%)
Mutual labels:  automation, framework
Facebookautolikeprofessional
Auto Like reactions and unlike Facebook Status, Comments, Photos, group posts, page posts, change facebook theme and skin colors, auto tag members in group post.. Auto Comment and Auto Reply to all Comments... Facebook Auto Like Unlimited 2019 is 100% safe to use...
Stars: ✭ 101 (-3.81%)
Mutual labels:  bot, automation
Bottyclient
A slim Discord client with many cool features including less network traffic which supports bot tokens, but user tokens theoretically work too. Tags: Discord Bot Client Token for Bot Botting Download English
Stars: ✭ 58 (-44.76%)
Mutual labels:  bot, client
Broid Kit
Bot framework powered by Broid
Stars: ✭ 58 (-44.76%)
Mutual labels:  bot, framework
Discord.js Menu
💬 Easily create Discord.js v12 embed menus with reactions and unlimited customizable pages.
Stars: ✭ 89 (-15.24%)
Mutual labels:  bot, framework


"Lightweight Steam client framework for node.js"


NPM version Build Status Dependency Status devDependency Status Gitter


About

Vapor is a lightweight Steam client framework for node.js which provides unified API for writing custom extensions. Vapor takes care of the basic stuff such as maintaining connection, logging in and exposes simple API which allows custom plugins to extend its behaviour.

Install

npm install vapor

Usage

var vapor = require('vapor');

var bot = vapor();
bot.init({username: 'myUsername', password: 'myPassword'});
bot.connect();

Client

Vapor provides a very simple automated client. This client uses node-steam to connect to Steam servers.

Vapor provides several key features:

  • handles log in process, including auth codes and sentry files
  • provides API for plugins
  • provides unified logging interface
  • provides a bunch of built-in plugins to make your life easier

Everything else needs to be programmed separately using plugin system.

Plugins

Plugins are self-contained code snippets which extend Vapor's behaviour.

Plugins have:

  • access to active Steam client instance and handlers
  • access to Steam's enums

They can:

  • emit custom events
  • listen to events
  • have their own configuration
  • store data
  • and more ...

Plugins are entirely event driven, there are no hard dependencies. Each plugin can emit an event and any plugin may register a callback for such event. This architecture allows your code to be modular and decoupled.

More information

Visit this repo's Wiki for more information regarding installation, configuration, API, plugins, etc.

Examples are provided in the examples folder.

You can also find auto-generated API docs in the docs folder.

LICENSE

MIT. See LICENSE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].