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.
使用 Yarn 2,默认安装方法会创建一个.pnp.js文件 (Plug'n'Play) 而不是node_modules目录。
.pnp.js
node_modules
如何使用此文件运行我的 Node 应用程序?
要使用 Yarn 的 Plug'n'Play 运行 Node 应用程序,您必须.pnp.js使用--require标志预加载文件。
--require
node --require ./.pnp.js foo.js
注意:确保--require路径以./或开头../。
./
../