Posts
electron深入
Electron 是一个使用 JavaScript, HTML 和 CSS 构建跨平台桌面应用的框架。它允许开发者将 Web 技术用于创建桌面应用程序,同时利用 Node.js 的能力访问本地系统资源。以下是对 Electron 架构的深
read more
Posts
Awesome Electron
From: https://github.com/sindresorhus/awesome-electron
Awesome Electron Useful resources for creating apps with Electron
Electron is an open-source framework for creating desktop apps using web technologies. It combines the Chromium rendering engine and the Node.js runtime.
Check out my macOS app Menu Bar Spacing Customize the gap between menu bar items on macOS Contents Apps Boilerplates Tools Components Documentation Articles Books Videos Podcasts Community Related Apps Made with Electron.
Open Source Featured WebTorrent - Streaming torrent client.
read more
Posts
electron介绍
Electron 是一个开源框架,它允许开发者使用 HTML、CSS 和 JavaScript 等 Web 技术构建跨平台的桌面应用程序。以下是对 Electron 的详细介绍: 历史背景 Electron 最初是作为构建 GitHub Atom 编
read more
Posts
虚幻引擎UnrealEngine介绍
Unreal Engine(虚幻引擎)简介 Unreal Engine是由Epic Games开发的一款功能强大的游戏引擎,最初于1998年发布,用于开发其内部游戏。随
read more
Posts
Rust的tikio库介绍
Tokio 是 Rust 语言的一个异步运行时,它提供了编写网络应用程序所需的构建模块,支持从大型服务器到小型嵌入式设备的多种系统。以下是 Tokio 的一些主要特性和代码
read more
Posts
Rust的跨平台特性
Rust 语言的跨平台特性主要得益于其编译为特定平台机器码的能力以及其标准库和第三方库对不同操作系统的适配。以下是 Rust 跨平台实现的一些关键点: 条件编译
read more
Posts
Rust语言的所有权系统
Rust 语言的所有权系统是其设计的核心,它提供了一种独特的方法来管理内存,确保了内存安全和效率。下面我将详细解释所有权、借用和生命周期的概念,以及
read more