哪个核心代码负责编译这个插件中的JavaScript
which core code is responsible for compiling the JavaScript in this plugin
最近正在研究plunker compiler,我以前没有用过mongodb,不想设置它来了解编译器的工作原理。所以,我想知道,我如何设置这个项目来删除 mongodb 适配器,只有核心编译功能,还有,任何人都可以指出负责编译 angularjs 的代码和其他 javascript 框架代码?
I have not used mongodb before, and do not wish to set it up for understanding how the compiler is working.
Plunker 运行 服务器不依赖于 mongo。当它呈现 plunk 时,它会从 Plunker API 服务器 defined here.
中拉取它们
can anybody point me to the code that is responsible for compiling the angularjs and other javascript framework codes?
Plunker 运行 服务器实际上并不像 Angular 和其他框架那样编译库。当 Plunker 包目录将这些框架添加到 Plunk 时,它会将 <script src="http://.."></script>
或 <link rel="stylesheet" href="http://..">
标记注入 index.html
。由于这些代码位可在 public 网址获得,当您预览您的作品时,您的浏览器会从这些位置提取它们,而 Plunker 运行 服务器根本不参与。
至于其他情况下的编译,如described in the README,th
最近正在研究plunker compiler,我以前没有用过mongodb,不想设置它来了解编译器的工作原理。所以,我想知道,我如何设置这个项目来删除 mongodb 适配器,只有核心编译功能,还有,任何人都可以指出负责编译 angularjs 的代码和其他 javascript 框架代码?
I have not used mongodb before, and do not wish to set it up for understanding how the compiler is working.
Plunker 运行 服务器不依赖于 mongo。当它呈现 plunk 时,它会从 Plunker API 服务器 defined here.
中拉取它们can anybody point me to the code that is responsible for compiling the angularjs and other javascript framework codes?
Plunker 运行 服务器实际上并不像 Angular 和其他框架那样编译库。当 Plunker 包目录将这些框架添加到 Plunk 时,它会将 <script src="http://.."></script>
或 <link rel="stylesheet" href="http://..">
标记注入 index.html
。由于这些代码位可在 public 网址获得,当您预览您的作品时,您的浏览器会从这些位置提取它们,而 Plunker 运行 服务器根本不参与。
至于其他情况下的编译,如described in the README,th