安装SQLite3

316 阅读1分钟

安装SQLite3

npm install sqlite3

创建数据库

create table if not exists notes(
ts datetime,
author varchar(255),
note text
);