nodejs 引用 canvas报错:without installing the canvas npm package

Error: Not implemented:HTMLCanvasElement. prototype.getContext(without installing the canvas npm package)

nodejs 引用 canvas报错:without installing the canvas npm package_第1张图片

试了node 14.19.1 和 node 16.15.0 两个版本的都不行,即使是npm install canvas 成功了,运行也会报错,困扰了好久,

后来没办法了尝试下最新的,发现就好了。。。

记录一下过程,就很简单,就两步:

  1. 卸载旧版本的nodejs
  2. 安装新版本的nodejs

最新的nodejs地址

nodejs 引用 canvas报错:without installing the canvas npm package_第2张图片
选中第一个下载安装即可,安装配置可参考nodejs安装及环境配置

测试npm安装的时候可能会报错:npm ERR! code EPERM npm ERR! syscall mkdir npm ERR! …

nodejs 引用 canvas报错:without installing the canvas npm package_第3张图片

都配好之后就可以安装canvas了,直接npm install canvas即可:

nodejs 引用 canvas报错:without installing the canvas npm package_第4张图片
成功之后再在js里文件里引用canvas就不会报错了。

你可能感兴趣的:(前端,npm,javascript,前端)