• Stars
    star
    107
  • Rank 323,587 (Top 7 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 9 years ago
  • Updated about 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

☁️ Lightweight Steam client framework for node.js


"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.

More Repositories

1

awesome-steam

😎 A curated list of packages and resources regarding Steam development
491
star
2

punk

⚡ Alternative cross-platform Steam client for desktop
JavaScript
100
star
3

steam-auth-web-util

Tiny browser utility to generate Steam auth codes.
JavaScript
26
star
4

steam-trade-offer-enhancer

Browser script to enhance Steam trade offers.
JavaScript
22
star
5

meteor-accounts-steam

☄ Steam OpenID integration for Meteor Accounts
JavaScript
17
star
6

node-steam-groups

👥 Custom node-steam handler which provides group functions
JavaScript
17
star
7

arnold

🎬 A modern Kodi web interface
JavaScript
16
star
8

opencv-steam-captcha

Solving Steam's captcha using OpenCV. Sort of ...
C++
16
star
9

node-steamrep

Very thin wrapper for the API provided by SteamRep.com
JavaScript
9
star
10

php-minecraft-avatars

Minecraft Avatars in PHP.
PHP
8
star
11

android-augmented-reality

Augmented Reality Project
Java
7
star
12

vapor-admin-commands

Vapor plugin which adds several useful admin commands.
JavaScript
5
star
13

vapor-storehouse

Vapor plugin to create storage account via trade offers.
JavaScript
4
star
14

steam-auto-confirmations

Stand-alone script for automatic trade offer/market listing confirmations
JavaScript
4
star
15

vapor-idler

Vapor plugin which allows to easily idle in games.
JavaScript
3
star
16

meteor-accounts-steam-example

Meteor example for accounts-steam
HTML
2
star
17

vapor-friendslist

Vapor plugin to manage friends list automatically.
JavaScript
2
star
18

node-reptf

rep.tf API Wrapper for node.js
JavaScript
2
star
19

steam-fake-openid-provider

Fake Steam OpenID validation endpoint that can bypass certain libraries and allows the attacker to supply arbitrary identity
JavaScript
2
star
20

vapor-winston-logger

Vapor plugin which provides Winston-based logger for all message events.
JavaScript
1
star
21

luabf

Brainfuck interpreter written in Lua.
Lua
1
star
22

electron-asar-dirname-issue

Issue with __dirname when using asar
JavaScript
1
star
23

scholtzm.github.io

HTML
1
star
24

meteor-steam

Steam OpenID integration for Meteor
JavaScript
1
star