gpt4 book ai didi

javascript - 运行 @hapi/hapi 给出错误 "#meetings = null SyntaxError: Invalid or unexpected token"

转载 作者:行者123 更新时间:2023-12-03 07:03:08 30 4
gpt4 key购买 nike

正在使用
@hapi/hapi : ^20.0.0
Node .js:v10.19.0
得到以下错误堆栈

|     #meetings = null;
| ^
|
| SyntaxError: Invalid or unexpected token
| at Module._compile (internal/modules/cjs/loader.js:723:23)
| at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10)
| at Module.load (internal/modules/cjs/loader.js:653:32)
| at tryModuleLoad (internal/modules/cjs/loader.js:593:12)
| at Function.Module._load (internal/modules/cjs/loader.js:585:3)
正在使用以下代码

'use strict';

const Hapi = require('@hapi/hapi');

const init = async () => {

const server = Hapi.server({
port: 5000,
host: 'localhost'
});

await server.start();
console.log('Server running on %s', server.info.uri);
};

process.on('unhandledRejection', (err) => {

console.log(err);
process.exit(1);
});

init();

最佳答案

您应该将 Node 版本升级到支持 private class fields 的 12+喜欢 #meetings .

引用文献: Table of Compatibility

关于javascript - 运行 @hapi/hapi 给出错误 "#meetings = null SyntaxError: Invalid or unexpected token",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63748038/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com