0

ここに私のconfig.jsonコードがあります:

{
    "connections": [
        {
            "port": 3000
        }
    ],
    "registrations": [
        {
            "plugin": "./plugins/db"
        },
        {
            "plugin": "good",
            "options": {
                "reporters": {
                    "console": [
                        {
                            "module": "good-squeeze",
                            "name": "Squeeze",
                            "args": [
                                {
                                    "log": "*",
                                    "response": "*"
                                }
                            ]
                        },
                        {
                            "module": "good-console"
                        },
                        "stdout"
                    ]
                }
            }
        },
        {
            "plugin": "./routes/bookmarks"
        },
        {
            "plugin": "blipp"
        }
    ]
}

そしてserver.js:

'use strict';

const Hapi = require('hapi');
const Glue = require('glue');

const manifest = require('./config.json');

const options = {
    relativeTo: __dirname
}

Glue.compose(manifest, options, (err, server) => {
    if (err) {
        throw err
    }

    server.start((err) => {
        if (err) {
            throw err
        }

        console.log(`Server is running at ${server.info.uri}`)
    });
})

私が得るエラー:

/home/master/Documents/Hapi/starter/node_modules/hoek/lib/index.js:736 throw new Error(msgs.join(' ') || '不明なエラー'); ^

エラー: 無効な登録オプション { "reporters" [1]: { "console": [ { "module": "good-squeeze", "name": "Squeeze", "args": [ { "log": "* "、

これに対する解決策はありますか?

4

1 に答える 1