需要从子目录中的index.html文件访问node_module目录文件,并且node_module目录位于父目录的相同位置。这里我使用angularjs,静态文件夹到服务器文件是公共目录。
app.use(express.static(__ dirname +'/ public'));
屏幕截图中提供了目录结构。enter image description here
答案 0 :(得分:1)
尝试使用node_modules文件夹
app.use(express.static(__dirname + '/node_modules'));
然后在index.html中,您可以直接访问node_modules文件夹的子目录,例如。
<script src="async/component.json"></script>