参考Angular官方网站的文件结构样式:
https://angular.io/docs/ts/latest/guide/style-guide.html#!#04-06
如果我想将Redux(或ngrx/store)实现到我的新Angular 4项目中,以这种方式构建我的应用程序会更好吗?
project root ??? src/ ? ??? app/ ? ? ???stores/ ? ? ? ??? heros/ ? ? ? ? ??? heros.actions.ts|reducer|effects|store.ts ? ? ? ? ? ? ? ??? ..../ ? ? ? ? ??? ..... ? ? ? ? ? ??? containers/ ? ? ? ??? heros/ ? ? ? ? ??? heros.component.ts|html|css|spec.ts ? ? ? ? ? ??? ...... ? ? ? ? ? ? ? ? ??? components/ ? ? ? ??? hero-list/ …
我正在开发一个chrome扩展,我希望在代码更改后自动刷新活动选项卡
我吞下开工作,所以我不需要导航到铬://扩展了与手动点击"刷新"
现在只剩下活动选项卡刷新
我已经尝试过gulp-livereload但是无法让它用于开发chrome扩展
任何想法如何处理这个?