您好,我从Node开始,并尝试按照文档over here编写代码。我按此做了所有的事情,但我的误差越来越小了。
const Bumblebee = require('bumblebee-hotword');
^
SyntaxError: Identifier 'Bumblebee' has already been declared
at Loader.moduleStrategy (node:internal/modules/esm/translators:147:18)
at async link (node:internal/modules/esm/module_job:48:21)下面是index.js代码
import Bumblebee from "bumblebee-hotword";
const Bumblebee = require('bumblebee-hotword');
let bumblebee = new Bumblebee();
// set path to worker files
bumblebee.setWorkersPath('/bumblebee-workers');
// add hotword
bumblebee.addHotword('jarvis');
// set sensitivity from 0.0 to 1.0
bumblebee.setSensitivity(1.0);
bumblebee.on('hotword', function(hotword) {
// YOUR CODE HERE
console.log('hotword detected:', hotword);
});
bumblebee.start();这是package.json
{
"name": "Hotword_template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"bumblebee-hotword": "^0.2.1"
}
}此外,所需的目录“bumblebee-worker”也在同一目录中。我不知道我哪里做错了,任何帮助都是非常感谢的!
发布于 2021-05-22 20:35:07
看看这两行,您正在导入和使用同名的常量变量。
import Bumblebee from "bumblebee-hotword";
const Bumblebee = require('bumblebee-hotword');更改常量变量的名称可以解决您的问题。
https://stackoverflow.com/questions/67649475
复制相似问题