在阅读了几百行关于browserify和webpack的几行之后,我决定去做webpack.主要原因是因为我喜欢将所有内容捆绑到一个js文件中的想法.
我有一个角度的项目已经在工作,我想重构它的webpack.问题?我的项目使用角度为1.4.7,ng-动画和纯Java(ES5),所有的教程和手册都适用于ES6.我不想重构我的项目这么多.有什么办法?我想要一个每个角度模块的例子:工厂,指令,控制器等.非常感谢
我通常有一个feature.module.js文件,它具有我的模块定义,并且需要模块中包含的所有指令/服务.还有外部的依赖.
原文链接:https://www.f2er.com/angularjs/142916.html/* module.js */ angular.module('my.module',['dependancy1','dependancy2']); //External libraries require('./dependancy1.module.js'); require('./dependancy2.module.js'); //Internal components require('./thing.directive'); require('./thing.service';
/* service.js */ angular.module('my.module') .directive('yourDir',function myDir(){...});