导入时出现引用错误 tone.js

Getting references error when importing tone.js

我的 Mac 上有基本的 express.js 服务器设置。为此,我尝试按照说明导入 Tone.js、https://tonejs.github.io

npm install tone

导入Tone.js:

import * as Tone from 'tone'

但是我遇到了这个错误

未捕获类型错误:无法解析模块说明符“tone”。相对引用必须以“/”、“./”或“../”开头。

我的包文件是这样的

{
  "name": "XXXXX",
  "version": "1.0.0",
  "description": "Run npm start",
  "main": "server.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "start": "nodemon start"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/xxxxx"
  },
  "author": "xxxxx xxxx",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/xxxxxxx"
  },
  "dependencies": {
    "express": "^4.17.1",
    "nodemon": "^2.0.12",
    "tone": "^14.7.77"
  }
}

正如@lars-flieger 指出的那样,运行 它不可能成为 node.js 服务器。 我最终从这里下载 Tones.js 并将其作为常规脚本标签包含在内。

https://github.com/Tonejs/Tone.js/wiki/Installation