我已经安装了NodeJS,将Express添加到顶部,现在我无法使FabricJS工作。
我是否必须按照“建筑”下的https://github.com/kangax/fabric.js/中的步骤操作FabricJS?
我尝试在我的应用根目录中运行$ node build.js
,这给了我:
$ node build.js
module.js:327
throw err;
^
Error: Cannot find module 'D:\Drive\Personal\Sandbox\express-angular-app\build.j
s'
at Function.Module._resolveFilename (module.js:325:15)
at Function.Module._load (module.js:276:25)
at Function.Module.runMain (module.js:441:10)
at startup (node.js:134:18)
at node.js:962:3
还有织物模块文件夹,它给了我:
$ node build.js
D:\Drive\Personal\Sandbox\express-angular-app\node_modules\fabric\build.js:93
if (err) throw err;
^
Error: ENOENT: no such file or directory, open 'D:\Drive\Personal\Sandbox\expres
s-angular-app\node_modules\fabric\HEADER.js'
at Error (native)
我使用Jade,我在index.jade
和fabric.js
中有以下内容:
答案 0 :(得分:2)
问题是我混淆了后端与前端。我希望通过npm安装结构模块,从后端开始工作。
相反,我只是在头部添加了CDN链接,它在客户端中运行。