Making your CSS modular is a difficult thing to do, but using Webpack makes this so much easier. By adding a single line to your Webpack config, you c...
分类:
Web程序 时间:
2015-09-08 21:44:07
阅读次数:
136
With Angular, most of the time you're specifying a templateUrl for your directives and states/routes. This means you need to make sure that you're loa...
分类:
Web程序 时间:
2015-09-08 18:35:30
阅读次数:
157
Install:npm install --save-dev babel-loaderwebpack.config.js:Add module, tell webpack to find all js file and use babel as loader, exclude all files i...
分类:
Web程序 时间:
2015-09-08 16:43:22
阅读次数:
461
You can easily spend hours configuring the perfect dev environment with all the latest hotness like ES6 (and beyond) support, hot reloading, and a myr...
分类:
Web程序 时间:
2015-09-06 06:23:09
阅读次数:
509
伴随着websites演化至web apps的过程,前端的代码量越来越庞大,我们需要高效的前端 code base 辅助工具。
分类:
Web程序 时间:
2015-08-26 01:23:23
阅读次数:
182
In this article, we’re going to use following software:React: the UI framework that can rendered on both server and client.webpack: a module bundler t...
分类:
移动开发 时间:
2015-08-11 11:49:44
阅读次数:
162
//entry.jsrequire("!style!css!./style.css");require("./hello.jsx");// document.write("It works.");document.write(require("./content.js"));//hello.jsxv...
分类:
Web程序 时间:
2015-08-06 10:43:44
阅读次数:
170
是什么webpack是一个模块打包工具,通过依赖处理模块,并生成那些模块静态资源。
观察上图,webpack把所有的资源(js,css和图片等)都当做是模块——webpack中可以引用css,css中可以嵌入图片dataUrl,对于不同类型的资源,webpack有对应的模块加载器。webpack模块打包器会分析模块间的依赖关系,最后 生成了优化且合并后的静态资源。为什么当今网站正在变成一个we...
分类:
Web程序 时间:
2015-08-02 18:18:14
阅读次数:
173
什么是 webpack?webpack是近期最火的一款模块加载器兼打包工具,它能把各种资源,例如JS(含JSX)、coffee、样式(含less/sass)、图片等都作为模块来使用和处理。我们可以直接使用 require(XXX) 的形式来引入各模块,即使它们可能需要经过编译(比如JSX和sass)...
分类:
Web程序 时间:
2015-07-16 16:16:32
阅读次数:
117
前言Webpack 是 OneAPM 前端技术栈中很重要的一部分,它非常好用,如果你还不了解它,建议你阅读这篇 Webpack 入门指迷 ,在 OneAPM 我们用它完成静态资源打包,ES6 代码的转换 ,React 组件的组织等,在接下来的日子里,我们将通过一系列文章和业界分享我们在使用 Webpack 过程中关于性能方面的经验。作为系列文章的第一篇,我们会重点介绍 Webpack 中的 reso...
分类:
Web程序 时间:
2015-07-10 09:29:27
阅读次数:
262