npm install certificate has expired 淘宝镜像证书过期的解决办法
npm config set registry https://registry.npm.taobao.org certificate has expired 原因: 新的Web 站点:https://npmmirror.com,Registry Endpoint:https://registry.npmmirror.com。随着新的域名已经正式启用,老 http://npm.taobao.org 和 http://registry.npm.taobao.org 域名将于 2022 年 05 月 31 日零时起停止服务淘宝 NPM 镜像站切换新域名 npm config s
继续阅读
html网页打印字体出现模糊的解决方法
在打印报告时 打印出来的文本是模糊的, 不清晰, 解决方案: 设置打印时字体 设置css 字体 @media print { *, *::before, *::after { text-shadow: none !important; box-shadow: none !important; } a:not(.btn) { text-decoration: underline; } abbr[title]
继续阅读
flutter实现雷达动画测试
import 'dart:math' as math show sin, pi, sqrt;import 'package:flutter/material.dart';class HYRipplesAnimation extends StatefulWidget { const HYRipplesAnimation({ super.key, this.size = 90, this.color = Colors.blue, this.child, th
继续阅读
使用 zip 命令循环压缩当前目录中的所有子目录
下面命令保存为(zip.sh) #!/bin/bash# 获取当前目录current_dir=$(pwd)# 遍历当前目录下的子目录for subdir in "$current_dir"/*; do if [[ -d "$subdir" ]]; then # 子目录存在时进行压缩 subdir_name=$(basename "$subdir") zip -r "$subdir_name.zip" "$subdir" fidone
继续阅读
NPM SSL Errors! code UNABLE_TO_VERIFY_LEAF_SIGNATURE
npm 安装时证书验证错误!!!NPM的install ERR! code UNABLE_TO_VERIFY_LEAF_SIGNATURENPM SSL Errorsnpm ERR! Error: SSL Error: UNABLE_TO_VERIFY_LEAF_SIGNATURE在确定所安装的包是安全的情况下,可以这样做(关闭npm的https)npm config set strict-ssl false开启npm config set strict-ssl true
继续阅读
使用parcel初始化前端项目
使用parcel创建前端项目 全局安装 parcel yarn add --dev parcel创建项目、初始化npmmkdir parcel-project && npm init -y创建src目录和 index.html、index.js文件mkdir src && cd $_ && touch index.html index.js添加Package scripts, and source{"...": "...","source": "src/index.html","scripts": {"start": "par
继续阅读