KCKohki Chauinlibrarian.hashnode.dev·May 10, 2024 · 1 min readFE-VerdaccioVerdaccio 是一个轻量级的私有 npm 代理注册中心,广泛用于在本地或组织内部托管 npm 包。 主题详细内容 定义与用途Verdaccio 是一个基于 Node.js 的轻量级私有 npm 代理和缓存服务器。它允许用户在本地网络内设置一个私有仓库,可用于发布和共享 npm 包,而无需将它们公开到 npmjs.com。这对于内部库的管理、测试和版本控制非常有用。 主要特性1. 私有托管:托管私有包而不暴露给外部网络。 2. 缓存功能:作为代理服务器,缓存从外部注册...00
KCKohki Chauinlibrarian.hashnode.dev·Apr 19, 2024 · 16 min readResponsive Web DesignBasic knowledge of mobile development 1. REM Dimensional unit Definition : REM (Root EM): a relative unit based on the font size of the root element (HTML element). Application : In mobile development, REM is used to implement responsive layout. Ma...00
KCKohki Chauinlibrarian.hashnode.dev·Apr 19, 2024 · 4 min read移动端基础+进阶施工中: 源码贴上;整理面试题; 移动端开发基础知识 1. REM 尺寸单位 定义: REM(Root EM):一个相对单位,基于根元素(HTML元素)字体大小。 应用: 在移动端开发,REM 用于实现响应式布局。通过设置根元素的字体大小,控制所有使用REM单位的元素大小,在不同设备上保持一致性和可扩展性。 2. 移动端开发常用单位 px(像素): 绝对单位,对应设备物理像素。 em: 相对单位,基于父元素字体大小。 vw/vh(视窗宽度/高度的百分比): 根据视窗大小变动。 ...00
KCKohki Chauinlibrarian.hashnode.dev·Apr 13, 2024 · 16 min readPHP 20240409 draftPHP Cron Laravel-CacheHelper 根据提供的搜索结果,我可以总结以下关于 Laravel 缓存类 CacheHelper 的最详细知识点: CacheHelper 类的详细介绍 CacheHelper 是一个抽象类,提供了三个主要方法: getKey(): 获取缓存的键 value(): 从缓存中获取值,如果缓存中不存在则调用 generate() 方法生成并存入缓存 forget(): 从缓存中删除指定键的值 CacheHelper 类中有两个属性: ...00
KCKohki Chauinlibrarian.hashnode.dev·Apr 13, 2024 · 16 min readDraft20240413(2)MQ 1. Basic Concepts of Message Queues A message queue is a form of asynchronous communication between application components. The sender (producer) and the receiver (consumer) of a message do not need to interact with the message queue at the same t...00