0.2.6 • Published 5 years ago

@khgame/loginsvr v0.2.6

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

loginsvr

Build Status GitHub last commit (branch) GitHub commit activity NPM npm (tag)

Quick Start

It will take about 5 minutes to quickly launch a login server.

Requirements

You need to have a nodejs runtime environment installed.

Installation

To install the application, run the following commands. This will download the package @khgame/loginsvr and install it in your global repository.

npm i -g @khgame/loginsvr
kh-loginsvr --version

Now, you will see current version to loginSvr in your console. Hence, you should create a config file at the directory where you need the loginSvr to run. You can manually create a new config file, but the recomended way is using the extract command.

cd /your/awwwwsome/running/directory
kh-loginsvr extract -p ./loginSvr.development.json

the extract command can be executed with the flag '-p', witch allows you specify the config name you can use this to create configs for different enviroments, e.g. loginSvr.production.json if it's didn't set, the default config name is ./loginSvr.development.json

Configuration

After installation, you should got a config file like this: loginSvr.development.json

{
    "name": "loginSvr",
    "id": 0,
    "port": 11801,
    "setting": {
        "log_prod_console": "info"
    },
    "drivers": {
        "mongo": {
            "host": "127.0.0.1",
            "port": 27017,
            "database": "loginSvr",
            "username": "",
            "password": ""
        },
        "redis": {
            "db": 0,
            "family": 4,
            "host": "127.0.0.1",
            "port": 6379,
            "keyPrefix": "khgame:login:",
            "key_mutex_wait_threshold": 100
        },
        "discover/consul": {
            "optional": true,
            "health": {
                "api": "api/v1/core/health"
            },
            "did": {
                "head_refresh": "process"
            }
        }
    },
    "rules": {
        "renewal_time_span": 600,
        "mail_option": {
            "host": "smtp.exmail.qq.com",
            "port": 465,
            "secureConnection": true,
            "auth": {
                "user": "YOUR_EMAIL_ADDRESS",
                "pass": "YOUR_EMAIL_PASS"
            }
        },
        "servers": [
            "AVAILABLE_SERVER_NAME"
        ]
    }
}

Updates these config entrys, replace then with your own setting.

for more information, you can check this document: Configuration

Running

Finally, you can start the loginSvr, just use the command kh-loginsvr start. This command will find the config file loginSvr.development.json, and then start the loginSvr using settings in the configuration file. If the config are not given, it will running with the defult setting, just like the extract command provides. therefore, you can also make your development enviroment match the default config to avoid these prepare operations

Alternatively, there are another ways to start up your login server.

  1. kh-loginsvr start -p will start loginsvr with NODE_ENV=production, and the default config to search will be loginSvr.production.json.
  2. kh-loginsvr start -c my.awwwwsome.config.json will start loginsvr with specified config file.

for more information, you can use the command kh-loginsvr start -h

API usage

see Api