在 TypeScript 和 JavaScript 中,?? 和 || 都是用于处理默认值的运算符,但它们的行为略有不同。
- 用途:用于处理 null 或 undefined 的情况。
- 行为:如果左侧操作数是 null 或 undefined,则返回右侧操作数;否则返回左侧操作数。
const value = someVariable ?? 'default value';
Tips on using NodeJS |
🌲 An exploration of life's philosophy, personal growth, and self-actualization. | |
🌼 关于生活哲学、个人成长与自我实现的随笔/读书笔记。 |
1. https://draculatheme.com/terminal | |
2. https://github.com/lysyi3m/macos-terminal-themes |
Mac 电脑,本地跑了一个 react app(http://localhost:3000) host 配置 prompt-dev.com, 指向 127.0.0.1 nginx 配置 prompt-dev.com 做了反向代理,指向 react app 的端口。
浏览器访问 prompt-dev.com 的时候,每隔 60 秒刷新一次页面。
Installing nginx in macOS Ventura using homebrew
Change the configuration value of listen from 8080 to 80
server {
listen 80;
server_name localhost;
#charset koi8-r;
顾名思义,基本都是在系统已有的功能上进行增强,例如截图工具
主页:brew.sh
官方安装方式:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"