萌新误入vue-loader洞穴 -- sourcemap

2016-12-26
阅读 5 分钟
6.4k
大祭司布鲁梅尔,跟玩家说在杰罗瓦镇的西北方有一个迷宫,里面有个被关闭了300年的魔物,我们需要把这个魔物干掉,正好以此来测试下玩家是否具备"开启者"的资格,也就是战斗系转职资格。

webpack-hot-middleware初探

2016-12-24
阅读 12 分钟
15.1k
一直感觉hot module replacement的特性挺神奇,所以这里初步探究下webpack-hot-middleware,这个模块 首先地址,[链接],当前版本为2.13.2,为了配合webpack2吧,肯定也做了些更新,不过这个是个非官方的库。 项目结构: 简单使用 他的用法,大家也很熟悉,可以参考文档以及example,下面仅展示了example里核心部分 从中...

connect-history-api-fallback分析

2016-12-22
阅读 8 分钟
20.7k
Single Page Applications (SPA) typically only utilise one index file that is accessible by web browsers: usually index.html. Navigation in the application is then commonly handled using JavaScript with the help of the HTML5 History API. This results in issues when the user hits the refresh button...