https://github.com/the-software-compagny/nestjs_module_rcon
RCON module for NestJS framework
https://github.com/the-software-compagny/nestjs_module_rcon
abstract abstraction async nestjs node nodejs npm npm-package promise rcon rcon-client spaces
Last synced: about 1 year ago
JSON representation
RCON module for NestJS framework
- Host: GitHub
- URL: https://github.com/the-software-compagny/nestjs_module_rcon
- Owner: The-Software-Compagny
- License: mit
- Created: 2023-03-18T13:43:39.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-03T03:31:40.000Z (over 1 year ago)
- Last Synced: 2025-04-13T11:42:34.164Z (about 1 year ago)
- Topics: abstract, abstraction, async, nestjs, node, nodejs, npm, npm-package, promise, rcon, rcon-client, spaces
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/@the-software-compagny/nestjs_module_rcon
- Size: 101 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
A RCON module for Nest framework (node.js) using rcon-client library
# NestJS RCON Module
RCON module for NestJS Framework
## Install dependencies
```bash
yarn add @the-software-compagny/nestjs_module_rcon rcon-client
```
## Instanciate
```ts
RconModule.forRootAsync({
imports: [ConfigModule],
inject: [ConfigService],
useFactory: async (config: ConfigService) => ({
config: config.get('rcon.options'),
}),
})
```