{"id":13703469,"url":"https://github.com/scholtzm/vapor","last_synced_at":"2025-12-24T15:43:24.144Z","repository":{"id":32910138,"uuid":"36505071","full_name":"scholtzm/vapor","owner":"scholtzm","description":"☁️ Lightweight Steam client framework for node.js","archived":false,"fork":false,"pushed_at":"2016-12-11T13:20:49.000Z","size":298,"stargazers_count":107,"open_issues_count":0,"forks_count":9,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-03-23T07:18:58.213Z","etag":null,"topics":["automation","bot","client","framework","nodejs","steam","steam-client"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/scholtzm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-05-29T13:11:31.000Z","updated_at":"2025-02-11T14:31:35.000Z","dependencies_parsed_at":"2022-08-01T09:37:36.751Z","dependency_job_id":null,"html_url":"https://github.com/scholtzm/vapor","commit_stats":null,"previous_names":[],"tags_count":23,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scholtzm%2Fvapor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scholtzm%2Fvapor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scholtzm%2Fvapor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scholtzm%2Fvapor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scholtzm","download_url":"https://codeload.github.com/scholtzm/vapor/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252458364,"owners_count":21751024,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["automation","bot","client","framework","nodejs","steam","steam-client"],"created_at":"2024-08-02T21:00:55.284Z","updated_at":"2025-12-24T15:43:24.088Z","avatar_url":"https://github.com/scholtzm.png","language":"JavaScript","funding_links":[],"categories":["Packages"],"sub_categories":["Node.js"],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/scholtzm/vapor\"\u003e\n    \u003cimg width=280px src=\"https://cloud.githubusercontent.com/assets/2640934/10439290/2a3aede4-7139-11e5-88c3-5ceed9b80a0f.png\"\u003e\n  \u003c/a\u003e\n  \u003cbr\u003e\n  \u003ci\u003e\"Lightweight \u003ca href=\"http://store.steampowered.com/about/\"\u003eSteam\u003c/a\u003e client framework for node.js\"\u003c/i\u003e\n\u003c/p\u003e\n\n---\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://www.npmjs.org/package/vapor\"\u003e\n    \u003cimg src=\"http://img.shields.io/npm/v/vapor.svg?style=flat\" alt=\"NPM version\"\u003e\n  \u003c/a\u003e\n\n  \u003ca href=\"https://travis-ci.org/scholtzm/vapor\"\u003e\n    \u003cimg src=\"https://travis-ci.org/scholtzm/vapor.svg?branch=master\" alt=\"Build Status\"\u003e\n  \u003c/a\u003e\n\n  \u003ca href=\"https://david-dm.org/scholtzm/vapor\"\u003e\n    \u003cimg src=\"https://david-dm.org/scholtzm/vapor.svg\" alt=\"Dependency Status\"\u003e\n  \u003c/a\u003e\n\n  \u003ca href=\"https://david-dm.org/scholtzm/vapor#info=devDependencies\"\u003e\n    \u003cimg src=\"https://david-dm.org/scholtzm/vapor/dev-status.svg\" alt=\"devDependency Status\"\u003e\n  \u003c/a\u003e\n\n  \u003ca href=\"https://gitter.im/scholtzm/vapor?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\"\u003e\n    \u003cimg src=\"https://badges.gitter.im/Join%20Chat.svg\" alt=\"Gitter\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n---\n\n## About\n\nVapor is a lightweight Steam client framework for [node.js](https://github.com/nodejs/node) 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.\n\n## Install\n\n```sh\nnpm install vapor\n```\n\n## Usage\n\n```js\nvar vapor = require('vapor');\n\nvar bot = vapor();\nbot.init({username: 'myUsername', password: 'myPassword'});\nbot.connect();\n```\n\n## Client\n\nVapor provides a very simple automated client. This client uses [node-steam](https://github.com/seishun/node-steam) to connect to Steam servers.\n\nVapor provides several key features:\n- handles log in process, including auth codes and sentry files\n- provides API for plugins\n- provides unified logging interface\n- provides a bunch of [built-in plugins](docs) to make your life easier\n\nEverything else needs to be programmed separately using plugin system.\n\n## Plugins\n\nPlugins are self-contained code snippets which extend Vapor's behaviour.\n\nPlugins have:\n- access to active Steam client instance and handlers\n- access to Steam's enums\n\nThey can:\n- emit custom events\n- listen to events\n- have their own configuration\n- store data\n- and more ...\n\nPlugins 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.\n\n## More information\n\nVisit this repo's Wiki for more information regarding installation, configuration, API, plugins, etc.\n\nExamples are provided in the [examples](examples) folder.\n\nYou can also find auto-generated API docs in the [docs](docs) folder.\n\n## LICENSE\n\nMIT. See `LICENSE`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscholtzm%2Fvapor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscholtzm%2Fvapor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscholtzm%2Fvapor/lists"}