摘要: 编辑系统环境变量,设置系统变量, 对于 windows 新建系统变量 NODE_PATH C:\Users\用户名\AppData\Roaming\npm\node_modules\ 编辑成功之后会像这 在Linux下, 只要编辑用户home下的.bashrc文件, 在里面添加类似下面的内容就可以了 阅读全文
posted @ 2022-02-27 16:17 大_大汤 阅读(642) 评论(0) 推荐(0) 编辑
摘要: Linux系统默认使用的shell为bash,在shell启动的时候会读取根据情况读取.bash_profile和.bashrc文件。 准确的说, 当shell是交互式登录shell时,读取.bash_profile文件,如在系统启动、远程登录或使用su -切换用户时; 当shell是交互式登录和非 阅读全文
posted @ 2022-01-27 10:42 大_大汤 阅读(227) 评论(0) 推荐(0) 编辑
摘要: #浏览器往返缓存--back-forward cache(bfcache) 什么是 bfcache ? bfcache,即 back-forward cache,可称为往返缓存,可以在用户使用浏览器的 后退 和 前进 按钮时加快页面的转换速度。这个缓存不仅保存页面数据,还保存了 DOM 和 JS 的 阅读全文
posted @ 2022-01-20 23:52 大_大汤 阅读(1670) 评论(0) 推荐(1) 编辑
摘要: Property 'requestIdleCallback' does not exist on type 'Window & typeof globalThis'. 代码使用了 window 的非标准属性 requestIdleCallback, ts 飘红报错: window 对象上不存在该属性 阅读全文
posted @ 2022-01-18 21:23 大_大汤 阅读(6293) 评论(0) 推荐(0) 编辑
摘要: 当项目过大时,git clone会出现超时失败,这时候我们可以只拉去最新的一次或者几次commit: git clone https://github.com/xxxxxxxx.git --depth=1 这个方法是可以成功把项目 clone 了,但是同时也产生了其他问题-- git branch 阅读全文
posted @ 2022-01-16 16:01 大_大汤 阅读(1821) 评论(0) 推荐(2) 编辑
摘要: npm install vue-cli --global 成功全局安装了vue-cli,但是执行时报错: 因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.microsoft.com/fwlink/?LinkID=135170... 解决方法 以管理员身份运行 powershel 阅读全文
posted @ 2022-01-09 18:09 大_大汤 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 安装Linux系统后的基本配置 安装好Linux后一般有两个用户: root 用户,即系统创建的拥有最高权限的用户,可以操作任何地方的任何文件或者程序; 系统安装完成时自己创建的用户,这里假设为user1,初创时只能操作home/user1 目录下和的文件或程序;后续可通过修改文件或目的权限 设置r 阅读全文
posted @ 2021-12-14 09:34 大_大汤 阅读(385) 评论(0) 推荐(0) 编辑
摘要: import React, { useState,useEffect,ReactNode} from 'react' import { Icon } from 'antd' import $ from './styleTableGroup.scss' export interface Column 阅读全文
posted @ 2021-09-07 13:27 大_大汤 阅读(79) 评论(0) 推荐(0) 编辑
摘要: import React, { CSSProperties, Fragment,useEffect,useRef,useState } from 'react' import { formatAmount } from '@/utils' const defaultColorList = [ ['# 阅读全文
posted @ 2021-07-30 18:34 大_大汤 阅读(56) 评论(0) 推荐(0) 编辑
摘要: Mac npm 安装全局包时: npm install cnpm -g --registry=https://registry.nlark.com 使用了全局命令-g, 且包成功安装到了 /Users/eleme/.npm-global/bin 但是 执行全局包时(cnpm --version)仍然 阅读全文
posted @ 2021-06-25 10:27 大_大汤 阅读(2668) 评论(0) 推荐(0) 编辑