https://github.com/dylhack/rcon.js
An RCON client for Node.JS developers
https://github.com/dylhack/rcon.js
Last synced: about 1 year ago
JSON representation
An RCON client for Node.JS developers
- Host: GitHub
- URL: https://github.com/dylhack/rcon.js
- Owner: dylhack
- License: bsd-2-clause
- Created: 2019-09-18T19:53:48.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-10-21T22:50:05.000Z (over 4 years ago)
- Last Synced: 2025-03-27T00:35:24.739Z (about 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 205 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RCON.js
An RCON client for NodeJS developers.
## Example Usage
```javascript
const {Client} = require('rcon.js');
const client = new Client('127.0.0.1', 25575);
client.login('password')
.then(async () => {
const response = await client.command('seed');
console.log(response.body);
});
```
## Further Documentation
Refer to [docs](./docs/globals.md)