
webpack
文章平均质量分 53
丿刘先森
努力,奋斗!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
webpack安装报错 npm ERR! Refusing to install package with name “webpack“ under a package
在安装webpack时报错如下:npm ERR! code ENOSELFnpm ERR! Refusing to install package with name "webpack" under a packagenpm ERR! also called "webpack". Did you name your project the samenpm ERR! as the dependency you're installing?npm ERR!npm ERR! For more in原创 2020-09-14 23:04:42 · 715 阅读 · 3 评论 -
webpack入门
webpack是什么?本质上,webpack是一个现代 JavaScript 应用程序的静态模块打包工具。当 webpack 处理应用程序时,它会在内部构建一个 依赖图,此依赖图会映射项目所需的每个模块,并生成一个或多个bundle。webpack可以看做是一个模块打包机,它做的事情是分析你的项目结构,找到JavaScript模块以及其他一些浏览器不能直接运行的拓展语言(sass、Typ...原创 2020-09-15 20:09:31 · 554 阅读 · 0 评论