Logo Vincent
Electron - Development Practice: Local Database SQLite

Electron - Development Practice: Local Database SQLite

Preface Some common methods for local data storage include Cookie, LocalStorage, IndexedDB, SQLite, etc. Here is a brief comparison. Cookie Storage size: 4k. Set expiration: Yes. Server-side access: Yes. Feature: Simple data storage. LocalStorage Storage size: 5M. Set expiration: No. Server-side access: No.

Electron
Learn Electron in One Article

Learn Electron in One Article

Preface: The powerful vitality of JavaScript has expanded frontend development into many areas — web development with JS/HTML/CSS, server-side development with Node.js, desktop development with Chromium and Node.js, and mobile development with WebView.

Electron
Learn IndexedDB in One Article

Learn IndexedDB in One Article

Introduction: IndexedDB is a database that can be used directly on the web. This article covers IndexedDB basics, comparison with LocalStorage, database and table operations, data CRUD operations, the qiao.db.js utility, and building a todolist with IndexedDB.

Web
Build a Todolist in One Article

Build a Todolist in One Article

Preface This article walks through building a todolist based on the following tech stack: React for UI, https://reactjs.org/ webpack for building the frontend project, https://webpack.js.org/ localStorage for data storage, https://developer.mozilla.

Web
Understanding JS Parallel Tasks in One Article

Understanding JS Parallel Tasks in One Article

Exploring how to efficiently run parallel tasks in JavaScript — covering use cases, task pools, callbacks, IIFE pattern, multi-process, and multi-thread approaches.

Web
Learn Webpack 5.x in One Article

Learn Webpack 5.x in One Article

Preface Web frontend development relies heavily on webpack. As we all know, webpack has many complex configurations — you could even have a dedicated "webpack configuration engineer." This article focuses on webpack core concepts and commonly used configurations in business development, aiming to teach you webpack usage and configuration in one article.

Web
Learn LocalStorage in One Article

Learn LocalStorage in One Article

Introduction: LocalStorage is a browser-based local storage API. This article covers LocalStorage basics, comparison with cookies, storing numbers and objects, storage limits, setting expiration times, and the qiao.ls.js utility library.

Web
© 2026 vincentqiao.com . All rights reserved.