我正在尝试从虚拟文件系统加载一些节点模块但是我无法正常工作
var request = require('request')
, AdmZip = require('adm-zip')
, fs = require('fs')
, unionfs = require('unionfs')
, memfs = require('memfs')
, mem = new memfs.Volume
, data = []
unionfs.use(fs).use(mem)
unionfs.replace(fs)
var req = request({
method: 'GET',
uri: 'https://firebasestorage.googleapis.com/v0/b/****.appspot.com/o/node_modules.zip',
headers: {
"encoding": "binary"
}
})
req.on('data', function(chunk) {
data.push(chunk)
}).on('end', function() {
var binary = Buffer.concat(data)
mem.mountSync('./', {
"node_modules.zip": binary
})
var zip = new AdmZip("./node_modules.zip")
var files = {}
zip.getEntries().forEach(function(entry) {
if (entry.isDirectory)
console.log(entry.entryName)
files[entry.entryName] = entry.getData()
});
mem.mountSync('./node_modules', files)
//need to get these modules dynamically
var async = require("async")
})
我遇到的错误是:错误:找不到模块'async'
现在,我试图使用此模块https://www.npmjs.com/package/package/app-module-path添加我的虚拟路径,但它只会获取物理路径。
任何人都可以帮助我吗?
不用担心安全性,我将使用此加密。
Unionfs的作者写道,require
在node.js
的新版本中不起作用:
// NOTE: This does not work in new Node.js
// Now you can also do:
// require('/usr/mem/dir/hello.js');
// Hello world!
// require('/project/hello.js');
// Hello world!
https://github.com/streamich/unionfs/blob/master/examples/example.js#l41