sqlite@4.0.17
SQLite client for Node.js applications with SQL-based migrations API written in Typescript
MIT
2020-11-13
安装 (4.0.17)
npm install sqlite@4.0.17
yarn add sqlite@4.0.17
pnpm add sqlite@4.0.17
bun add sqlite@4.0.17
devDependencies (27)
| 包名 | 版本要求 |
|---|---|
| @theo.gravity/changelog-version | 2.1.10 |
| @theo.gravity/version-bump | 2.0.10 |
| @types/jest | 26.0.9 |
| @types/node | ^14.0.27 |
| @types/sqlite3 | ^3.1.6 |
| @typescript-eslint/eslint-plugin | ^3.8.0 |
| @typescript-eslint/parser | ^3.8.0 |
| eslint | 7.6.0 |
| git-commit-stamper | ^1.0.9 |
| jest | 26.2.2 |
| jest-cli | 26.2.2 |
| jest-junit-reporter | 1.1.0 |
| lint-staged | 10.2.11 |
| pre-commit | 1.2.2 |
| prettier-standard | 16.4.1 |
| sql-template-strings | ^2.2.2 |
| sqlite3 | ^5.0.0 |
| sqlite3-offline | ^4.3.1 |
| standardx | ^5.0.0 |
| toc-md-alt | ^0.3.2 |
| ts-jest | 26.1.4 |
| ts-node | 8.10.2 |
| ts-node-dev | 1.0.0-pre.56 |
| typedoc | ^0.18.0 |
| typedoc-plugin-markdown | ^2.4.0 |
| typescript | 3.9.7 |
| version-bump-plugin-git | ^2.0.1 |
版本列表
5.1.1
2023-11-01
5.1.0-pre1
2023-11-01
5.0.1
2023-07-11
4.2.1
2023-05-23
4.2.0
2023-05-01
4.1.3
2023-05-01
4.1.2
2022-07-19
4.1.1
2022-04-24
4.0.25
2022-03-07
4.0.24
2022-03-06
4.0.23
2021-05-24
4.0.22
2021-05-09
4.0.21
2021-03-31
4.0.19
2020-12-30
4.0.18
2020-12-04
4.0.17
2020-11-13
4.0.16
2020-11-13
4.0.15
2020-09-30
4.0.14
2020-08-10
4.0.13
2020-08-10
4.0.12
2020-07-20
4.0.11
2020-06-12
4.0.10
2020-06-03
4.0.9
2020-05-25
4.0.8
2020-05-21
4.0.7
2020-04-12
4.0.6
2020-04-11
4.0.5
2020-04-05
4.0.4
2020-04-05
4.0.3
2020-04-05
4.0.2
2020-04-04
4.0.1
2020-04-04
4.0.0-beta.7
2020-03-22
4.0.0-beta.6
2020-03-22
4.0.0-beta.5
2020-03-22
4.0.0-beta.4
2020-03-22
4.0.0-beta.2
2020-03-22
4.0.0-beta.1
2020-03-22
4.0.0-beta.0
2020-03-22
3.0.6
2020-03-22
3.0.5
2020-03-22
3.0.4
2020-03-22
3.0.3
2019-03-22
3.0.2
2019-02-15
3.0.1
2019-01-28
3.0.0
2018-08-22
2.9.3
2018-08-22
2.9.2
2018-05-15
2.9.1
2018-01-14
2.9.0
2017-11-27
2.8.0
2017-05-21
2.7.0
2017-05-02
2.6.0
2017-04-30
2.5.0
2017-03-24
2.3.0
2017-01-31
2.2.4
2016-12-10
2.2.3
2016-11-10
2.2.2
2016-11-02
2.2.1
2016-10-26
2.2.0
2016-07-22
2.1.0
2016-07-16
2.0.2
2016-05-21
1.0.0
2016-05-19
0.0.4
2016-01-21
0.0.3
2016-01-18
0.0.2
2016-01-03
相关教程
rqlite 轻量分布式 SQLite
rqlite 用 Raft 共识复制 SQLite 写入支持自动选举和故障转移。读写分离 Leader 处理写入。适合不需要 PostgreSQL 的轻量分布式存储。本文部署 rqlite 集群。
Android Room 数据库本地存储
Android Room 是 SQLite 抽象层编译时验证 SQL。DAO 定义数据库操作。配合 Flow 做响应式查询。本文用 Room 存储待办事项。
K3s 轻量 K8s 发行版
K3s 是 Rancher 的轻量 K8s 用 SQLite 替代 etcd 二进制仅 60MB。适合边缘和资源受限环境。支持 ARM。本文在树莓派上部署 K3s 集群。
SQLite WAL 模式写入性能
SQLite WAL 模式允许读和写同时进行不会阻塞。WAL 文件替代 rollback journal。批量写入合并减少 fsync。本文对比 WAL 和传统日志的写入性能。
Room 持久化库:Android 本地 SQLite 抽象
使用 Room 在 Android 中安全、高效地操作本地数据库,支持编译时 SQL 验证。