05 2020 档案
摘要:https://www.cnblogs.com/boonya/p/10691466.html mvn clean install -Dmaven.test.skip=true
阅读全文
摘要:首先,感谢尚硅谷! 剖析Vue实现原理 - 如何实现双向绑定mvvm https://github.com/xiluhua/mvvm 知识点准备: 1. [].slice.call(lis): 将伪数组转换为真数组 2. node.nodeType: 得到节点类型 3. Object.defineP
阅读全文
摘要:node 配置 npm npm 命令 查看全局文件包路径 npm config listnpm config ls -l npm install -g xxx 时, 模块将被下载安装到【全局目录】中。 npm config set prefix "目录路径" # 设置使用哪个版本的 npm 由此决定
阅读全文
摘要:commonJS 规范 1. 模块引用 require('./path'), exports 暴露属性&方法 2. 模块定义 js 文件 3. 模块标识 各个 js 文件,包括: - 核心模块 由 node 引擎提供的模块 比如: var fs=require('fs') - 文件模块 用户自己编写
阅读全文
摘要:You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/conc
阅读全文
摘要:安装 node.js https://nodejs.org/en/
阅读全文
摘要:idea jihuo http://idea.medeming.com/jets/ idea [Open File or Project] 修改默认路径 https://blog.csdn.net/tangs_/article/details/85325223 idea配置项目运行时内存大小 -se
阅读全文
摘要:nginx 必须启用 启用 --with-stream 模块。 ./configure --with-stream --with-http_ssl_module --with-http_stub_status_module 可下载源码编译。 nginx.conf的配置: worker_process
阅读全文