这是一个自己写的小插件,下面的文档是直接复制的 README.md😂;
主要是方便工作中切换后端服务器地址的情况,项目体量达到一定程度的时候,每次重启会花很多时间,所以就萌生了一个想法并把它具象化
另外发现一个
emoji
表情的转码方式(有时候会用到 utf-16 的编码格式):
emojiall这个网站搜索你想要的的 emoji 表情然后直接在浏览器控制台console
里面运行这个代码("😂".codePointAt(0).toString(16))就能得到你想要的表情包的 16 进制代码(这里以😂表情为例),然后在头上加入&#x
,在尾部加上;
就构成了这个😂
😂
MIECZ
miecz0.jpg📄描述(Description)
这是一个 VSCode 的代理服务器扩展。 可以同时创建多个代理服务器方便前端项目切换服务器地址(例如:测试、开发等环境)。一般情况下我们使用打包工具如 webpack
开发代码,经常会出现切换环境的情况。然而随着代码量的增加打包时间也相应增加,导致我们想切换服务器地址都需要重启🐌会浪费大量时间,现在如果使用了 MIECZ
可以做到迅速 🚀切换服务器地址。
I used translation tools to translate the text, including this sentence 😏 This is a proxy server extensions for VSCode. Multiple proxy servers can be created at the same time for front-end projects to switch server addresses (for example, test, development, etc.). Usually we use packaging tools such as
Webpack
to develop code, and often switch environments. However, as the amount of code increases, the packaging time also increases accordingly. As a result, we need to restart if we want to switch the server address, which will waste a lot of time. Now, if we useMIECZ
, we can quickly switch the server address.
🪛安装(Installation)
VSCode 扩展库中搜索安装最新版本
Install the latest version by searching the VSCode Marketplace library
✨使用(Usage)
-
安装完成之后可以再左侧活动栏发现一个新的扩展
MIECZ
如下图所示After the installation is complete, you can find a new extension
MIECZ
in the left activity bar as shown below
-
创建代理服务器,点击按钮即可进入创建
To create a proxy server, click the button to enter create
- 在端口号这里输入你想要创建代理服务器的端口号,这样可以让你的项目服务器地址指向这个端口(例如:http://localhost:9000,那么你只需要在这里输入 9000)
Enter the port number where you want to create the proxy server, so that your project server address points to this port (for example :http://localhost:9000, then you only need to enter 9000 here).
- 点击添加地址,可以新增多个地址方便切换(例如:http://localhost:8000/xxx/xxx,http://localhost:7000/xxx/xxx),并且添加备注名方便区别
Click on add address, you can add more than one address convenient switch (for example: http://localhost:8000/xxx/xxx, http://localhost:7000/xxx/xxx), convenient and add notes
- 完成之后需要选择中一个地址进行第一次运行
After completion, you need to select one of the addresses for the first run
- 点击保存并运行即可
Click Save and run
- 在端口号这里输入你想要创建代理服务器的端口号,这样可以让你的项目服务器地址指向这个端口(例如:http://localhost:9000,那么你只需要在这里输入 9000)
miecz6.jpg
miecz7.png
-
代理服务器运行
Proxy server running
- 运行中代理服务器会自动保存显示前 100 条日志,可以手动清除
The running proxy server automatically saves and displays the first 100 logs, which can be manually cleared
- 在代理服务器列表上有四个按钮分别是:启动/停止、编辑、显示日志、删除
There are four buttons on the proxy server list: Start/Stop, Edit, Show log, and Delete
- 启动/停止: 启动和停止代理服务器
> Start/Stop:Start and stop the proxy server
- 编辑:修改代理服务器的信息(代理地址、备注名、切换代理等)暂不支持修改端口号
> Edit:modify the information about the proxy server (such as the proxy address, remarks, and proxy switchover). The port number cannot be changed
- 删除:删除当前代理服务器
> Delete:Deletes the current proxy server
- 运行中代理服务器会自动保存显示前 100 条日志,可以手动清除
-
清除日志,点击清除日志即可勾选要清除日志的服务器
To clear logs, click Clear Logs to select the server to clear logs
网友评论