Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对流星和 node.js 真的很陌生,我认为它真的很棒!
所以我遇到的问题是我无法从流星访问节点的文件系统模块。在 stackoverflow 上,其他用户报告说他们使用
var require = __meteor_bootstrap__.require; var fs = require('fs');
但是,当我调用它时,我收到此错误:
类型错误:未定义不是函数
我遵循了这个问题的答案,我不知道从这里做什么。我确保上面的代码位于服务器的启动部分。
从 Meteor 0.6.0 开始,它将是:
var fs = Npm.require("fs");