无法启动节点应用程序配置文件

时间:2017-04-18 09:42:50

标签: javascript node.js config

我对nodeJs完全不熟悉。我在用 node 5.0.0克隆了repo并启动了命令:

node ./app.js -c config.yaml

但我收到此错误

node_modules/q/q.js:155
                throw e;
            ^

SyntaxError: Unexpected token u
    at Object.parse (native)
    at yaml2json (/home/../mosaic-techonmap-server/source/config.access.js:13:21)
    at module.exports (/home/../mosaic-techonmap-server/source/config.access.js:152:23)
    at /home/../app.js:89:45
    at _fulfilled (/home/../node_modules/q/q.js:854:54)
    at self.promiseDispatch.done (/home/../mosaic-techonmap-server/node_modules/q/q.js:883:30)
    at Promise.promise.promiseDispatch (/home/../mosaic-techonmap-server/node_modules/q/q.js:816:13)
    at /home/../mosaic-techonmap-server/node_modules/q/q.js:877:14
    at runSingle (/home/../mosaic-techonmap-server/node_modules/q/q.js:137:13)
    at flush (/home/../mosaic-techonmap-server/node_modules/q/q.js:125:13)

有人有想法吗?

编辑:这里是config.yaml文件的代码

---
# Configuration sample file for Jingo (YAML)
application:
    title: "CartoWiki"
server:
    hostname: "localhost"
    port: 6067
    localOnly: false
    baseUrl: "http://localhost:6067"
authentication:
    google:
      enabled: true
    twitter:
      enabled: true
      oauthkeys:
        consumerKey : ''
        consumerSecret : ''
      cacheExpire: 3600000
    facebook:
      enabled: true
      oauthkeys:
        clientID : ''
        clientSecret : ''
    alone:
      enabled: false
      username: ""
      passwordHash: ""
      email: ""
twitterClient:
    consumerKey : ''
    consumerSecret : ''
    accessTokenKey : ''
    accessTokenSecret : ''

1 个答案:

答案 0 :(得分:0)

我克隆了回购,当我尝试你的config.yaml时,我能够重现这个问题。

config.access.js:152:23除了config.accessRules但您的yaml文件没有accessRules,因此accessRules对象变为未定义,因为错误Unexpected token u

accessRules添加到您的配置中,然后就不会出现此错误。