🎉 init: 小龙的工作空间

This commit is contained in:
大海
2026-06-06 10:40:48 +08:00
commit a188ee1426
3201 changed files with 231817 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
node_modules/
dist/
data/
.env
*.db
*.db-journal
*.db-wal
+90
View File
@@ -0,0 +1,90 @@
# EduPlatform — Backend API
> 一个支持在线课程学习、直播授课、题库练习和学情追踪的教育平台。
## Tech Stack
- **Runtime**: Node.js
- **Framework**: Fastify 5
- **Language**: TypeScript
- **Database**: SQLite (better-sqlite3)
- **Auth**: JWT + bcrypt
## Getting Started
```bash
# Install dependencies
npm install
# Development (hot reload)
npm run dev
# Build
npm run build
# Production start
npm run start
# Run tests
npm test
```
## Project Structure
```
src/
├── index.ts # Server entry point
├── db/
│ ├── schema.ts # SQLite schema
│ └── client.ts # Database client
├── routes/
│ ├── auth.ts # Auth routes (register/login/me)
│ └── *.ts # CRUD routes
├── services/
│ └── *.ts # Business logic
├── middleware/
│ └── auth.ts # JWT middleware
├── types/
│ └── index.ts # TypeScript types
└── __tests__/
└── *.test.ts # Tests
```
## API Endpoints
### Auth
- `POST /api/auth/register` — Register
- `POST /api/auth/login` — Login
- `GET /api/auth/me` — Current user (auth required)
### Resources
#### courses
- `GET /api/courses` — List all
- `GET /api/courses/:id` — Get by ID
- `POST /api/courses` — Create
- `PUT /api/courses/:id` — Update
- `DELETE /api/courses/:id` — Delete
#### chapters
- `GET /api/chapters` — List all
- `GET /api/chapters/:id` — Get by ID
- `POST /api/chapters` — Create
- `PUT /api/chapters/:id` — Update
- `DELETE /api/chapters/:id` — Delete
#### students
- `GET /api/students` — List all
- `GET /api/students/:id` — Get by ID
- `POST /api/students` — Create
- `PUT /api/students/:id` — Update
- `DELETE /api/students/:id` — Delete
#### assignments
- `GET /api/assignments` — List all
- `GET /api/assignments/:id` — Get by ID
- `POST /api/assignments` — Create
- `PUT /api/assignments/:id` — Update
- `DELETE /api/assignments/:id` — Delete
### System
- `GET /api/health` — Health check
+27
View File
@@ -0,0 +1,27 @@
{
"name": "eduplatform",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "node --import tsx --test src/__tests__/*.test.ts",
"test:watch": "node --import tsx --test --watch src/__tests__/*.test.ts"
},
"dependencies": {
"fastify": "^5.0.0",
"@fastify/cors": "^10.0.0",
"@fastify/jwt": "^9.0.0",
"sql.js": "^1.12.0",
"bcrypt": "^5.1.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/bcrypt": "^5.0.0",
"typescript": "^5.6.0",
"tsx": "^4.0.0",
"pino-pretty": "^11.0.0"
}
}
@@ -0,0 +1,120 @@
// Assignments CRUD test
import { describe, it, before, after } from "node:test";
import assert from "node:assert/strict";
import { buildApp } from "../index.js";
import type { FastifyInstance } from "fastify";
let app: FastifyInstance;
let token: string;
let createdId: string;
let payload: Record<string, unknown>;
before(async () => {
process.env.JWT_SECRET = "test-secret";
process.env.DATABASE_URL = ":memory:";
app = await buildApp();
await app.ready();
// Register and login to get a token
const regRes = await app.inject({
method: "POST",
url: "/api/auth/register",
payload: { username: `test_${Date.now()}`, password: "password123" },
});
token = regRes.json().token;
// Resolve user FK references with the registered user's real ID
payload = {
"userId": regRes.json().user.id,
"courseId": "sample-courseid",
"title": "sample-title",
"description": "sample-description",
"dueDate": "sample-duedate"
};
});
after(async () => {
await app.close();
});
describe("GET /api/assignments", () => {
it("returns empty list", async () => {
const res = await app.inject({
method: "GET",
url: "/api/assignments",
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 200);
const body = res.json();
assert.ok(Array.isArray(body.data));
});
});
describe("POST /api/assignments", () => {
it("creates a assignment", async () => {
const res = await app.inject({
method: "POST",
url: "/api/assignments",
headers: { authorization: `Bearer ${token}` },
payload,
});
assert.equal(res.statusCode, 201);
const body = res.json();
assert.ok(body.data.id);
createdId = body.data.id;
});
});
describe("GET /api/assignments/:id", () => {
it("returns the created assignment", async () => {
const res = await app.inject({
method: "GET",
url: `/api/assignments/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 200);
const body = res.json();
assert.equal(body.data.id, createdId);
});
it("returns 404 for nonexistent id", async () => {
const res = await app.inject({
method: "GET",
url: `/api/assignments/nonexistent`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 404);
});
});
describe("PUT /api/assignments/:id", () => {
it("updates the assignment", async () => {
const res = await app.inject({
method: "PUT",
url: `/api/assignments/${createdId}`,
headers: { authorization: `Bearer ${token}` },
payload,
});
assert.equal(res.statusCode, 200);
});
});
describe("DELETE /api/assignments/:id", () => {
it("deletes the assignment", async () => {
const res = await app.inject({
method: "DELETE",
url: `/api/assignments/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 204);
});
it("returns 404 after delete", async () => {
const res = await app.inject({
method: "GET",
url: `/api/assignments/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 404);
});
});
@@ -0,0 +1,96 @@
// Auth routes test
import { describe, it, before, after } from "node:test";
import assert from "node:assert/strict";
import { buildApp } from "../index.js";
import type { FastifyInstance } from "fastify";
let app: FastifyInstance;
let token: string;
before(async () => {
process.env.JWT_SECRET = "test-secret";
process.env.DATABASE_URL = ":memory:";
app = await buildApp();
await app.ready();
});
after(async () => {
await app.close();
});
describe("POST /api/auth/register", () => {
it("registers a new user", async () => {
const res = await app.inject({
method: "POST",
url: "/api/auth/register",
payload: { username: "testuser", password: "password123" },
});
assert.equal(res.statusCode, 201);
const body = res.json();
assert.ok(body.token);
assert.equal(body.user.username, "testuser");
token = body.token;
});
it("rejects duplicate username", async () => {
const res = await app.inject({
method: "POST",
url: "/api/auth/register",
payload: { username: "testuser", password: "password123" },
});
assert.equal(res.statusCode, 409);
});
it("rejects short password", async () => {
const res = await app.inject({
method: "POST",
url: "/api/auth/register",
payload: { username: "user2", password: "123" },
});
assert.equal(res.statusCode, 400);
});
});
describe("POST /api/auth/login", () => {
it("logs in with correct credentials", async () => {
const res = await app.inject({
method: "POST",
url: "/api/auth/login",
payload: { username: "testuser", password: "password123" },
});
assert.equal(res.statusCode, 200);
const body = res.json();
assert.ok(body.token);
token = body.token;
});
it("rejects wrong password", async () => {
const res = await app.inject({
method: "POST",
url: "/api/auth/login",
payload: { username: "testuser", password: "wrongpassword" },
});
assert.equal(res.statusCode, 401);
});
});
describe("GET /api/auth/me", () => {
it("returns current user with valid token", async () => {
const res = await app.inject({
method: "GET",
url: "/api/auth/me",
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 200);
const body = res.json();
assert.equal(body.data.username, "testuser");
});
it("rejects without token", async () => {
const res = await app.inject({
method: "GET",
url: "/api/auth/me",
});
assert.equal(res.statusCode, 401);
});
});
@@ -0,0 +1,119 @@
// Chapters CRUD test
import { describe, it, before, after } from "node:test";
import assert from "node:assert/strict";
import { buildApp } from "../index.js";
import type { FastifyInstance } from "fastify";
let app: FastifyInstance;
let token: string;
let createdId: string;
let payload: Record<string, unknown>;
before(async () => {
process.env.JWT_SECRET = "test-secret";
process.env.DATABASE_URL = ":memory:";
app = await buildApp();
await app.ready();
// Register and login to get a token
const regRes = await app.inject({
method: "POST",
url: "/api/auth/register",
payload: { username: `test_${Date.now()}`, password: "password123" },
});
token = regRes.json().token;
// Resolve user FK references with the registered user's real ID
payload = {
"userId": regRes.json().user.id,
"courseId": "sample-courseid",
"title": "sample-title",
"durationMin": 1
};
});
after(async () => {
await app.close();
});
describe("GET /api/chapters", () => {
it("returns empty list", async () => {
const res = await app.inject({
method: "GET",
url: "/api/chapters",
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 200);
const body = res.json();
assert.ok(Array.isArray(body.data));
});
});
describe("POST /api/chapters", () => {
it("creates a chapter", async () => {
const res = await app.inject({
method: "POST",
url: "/api/chapters",
headers: { authorization: `Bearer ${token}` },
payload,
});
assert.equal(res.statusCode, 201);
const body = res.json();
assert.ok(body.data.id);
createdId = body.data.id;
});
});
describe("GET /api/chapters/:id", () => {
it("returns the created chapter", async () => {
const res = await app.inject({
method: "GET",
url: `/api/chapters/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 200);
const body = res.json();
assert.equal(body.data.id, createdId);
});
it("returns 404 for nonexistent id", async () => {
const res = await app.inject({
method: "GET",
url: `/api/chapters/nonexistent`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 404);
});
});
describe("PUT /api/chapters/:id", () => {
it("updates the chapter", async () => {
const res = await app.inject({
method: "PUT",
url: `/api/chapters/${createdId}`,
headers: { authorization: `Bearer ${token}` },
payload,
});
assert.equal(res.statusCode, 200);
});
});
describe("DELETE /api/chapters/:id", () => {
it("deletes the chapter", async () => {
const res = await app.inject({
method: "DELETE",
url: `/api/chapters/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 204);
});
it("returns 404 after delete", async () => {
const res = await app.inject({
method: "GET",
url: `/api/chapters/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 404);
});
});
@@ -0,0 +1,122 @@
// Courses CRUD test
import { describe, it, before, after } from "node:test";
import assert from "node:assert/strict";
import { buildApp } from "../index.js";
import type { FastifyInstance } from "fastify";
let app: FastifyInstance;
let token: string;
let createdId: string;
let payload: Record<string, unknown>;
before(async () => {
process.env.JWT_SECRET = "test-secret";
process.env.DATABASE_URL = ":memory:";
app = await buildApp();
await app.ready();
// Register and login to get a token
const regRes = await app.inject({
method: "POST",
url: "/api/auth/register",
payload: { username: `test_${Date.now()}`, password: "password123" },
});
token = regRes.json().token;
// Resolve user FK references with the registered user's real ID
payload = {
"userId": regRes.json().user.id,
"title": "sample-title",
"description": "sample-description",
"instructor": "sample-instructor",
"price": 1,
"coverUrl": "sample-coverurl",
"category": "sample-category"
};
});
after(async () => {
await app.close();
});
describe("GET /api/courses", () => {
it("returns empty list", async () => {
const res = await app.inject({
method: "GET",
url: "/api/courses",
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 200);
const body = res.json();
assert.ok(Array.isArray(body.data));
});
});
describe("POST /api/courses", () => {
it("creates a cours", async () => {
const res = await app.inject({
method: "POST",
url: "/api/courses",
headers: { authorization: `Bearer ${token}` },
payload,
});
assert.equal(res.statusCode, 201);
const body = res.json();
assert.ok(body.data.id);
createdId = body.data.id;
});
});
describe("GET /api/courses/:id", () => {
it("returns the created cours", async () => {
const res = await app.inject({
method: "GET",
url: `/api/courses/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 200);
const body = res.json();
assert.equal(body.data.id, createdId);
});
it("returns 404 for nonexistent id", async () => {
const res = await app.inject({
method: "GET",
url: `/api/courses/nonexistent`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 404);
});
});
describe("PUT /api/courses/:id", () => {
it("updates the cours", async () => {
const res = await app.inject({
method: "PUT",
url: `/api/courses/${createdId}`,
headers: { authorization: `Bearer ${token}` },
payload,
});
assert.equal(res.statusCode, 200);
});
});
describe("DELETE /api/courses/:id", () => {
it("deletes the cours", async () => {
const res = await app.inject({
method: "DELETE",
url: `/api/courses/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 204);
});
it("returns 404 after delete", async () => {
const res = await app.inject({
method: "GET",
url: `/api/courses/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 404);
});
});
@@ -0,0 +1,120 @@
// Exercis CRUD test
import { describe, it, before, after } from "node:test";
import assert from "node:assert/strict";
import { buildApp } from "../index.js";
import type { FastifyInstance } from "fastify";
let app: FastifyInstance;
let token: string;
let createdId: string;
before(async () => {
process.env.JWT_SECRET = "test-secret";
process.env.DATABASE_URL = ":memory:";
app = await buildApp();
await app.ready();
// Register and login to get a token
const regRes = await app.inject({
method: "POST",
url: "/api/auth/register",
payload: { username: `test_${Date.now()}`, password: "password123" },
});
token = regRes.json().token;
});
after(async () => {
await app.close();
});
describe("GET /api/exercises", () => {
it("returns empty list", async () => {
const res = await app.inject({
method: "GET",
url: "/api/exercises",
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 200);
const body = res.json();
assert.ok(Array.isArray(body.data));
});
});
describe("POST /api/exercises", () => {
it("creates a exercis", async () => {
const res = await app.inject({
method: "POST",
url: "/api/exercises",
headers: { authorization: `Bearer ${token}` },
payload: {
"lessonId": "00000000-0000-0000-0000-000000000001",
"question": "sample-question",
"options": "sample-options",
"answer": "sample-answer"
},
});
assert.equal(res.statusCode, 201);
const body = res.json();
assert.ok(body.data.id);
createdId = body.data.id;
});
});
describe("GET /api/exercises/:id", () => {
it("returns the created exercis", async () => {
const res = await app.inject({
method: "GET",
url: `/api/exercises/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 200);
const body = res.json();
assert.equal(body.data.id, createdId);
});
it("returns 404 for nonexistent id", async () => {
const res = await app.inject({
method: "GET",
url: `/api/exercises/nonexistent`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 404);
});
});
describe("PUT /api/exercises/:id", () => {
it("updates the exercis", async () => {
const res = await app.inject({
method: "PUT",
url: `/api/exercises/${createdId}`,
headers: { authorization: `Bearer ${token}` },
payload: {
"lessonId": "00000000-0000-0000-0000-000000000001",
"question": "sample-question",
"options": "sample-options",
"answer": "sample-answer"
},
});
assert.equal(res.statusCode, 200);
});
});
describe("DELETE /api/exercises/:id", () => {
it("deletes the exercis", async () => {
const res = await app.inject({
method: "DELETE",
url: `/api/exercises/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 204);
});
it("returns 404 after delete", async () => {
const res = await app.inject({
method: "GET",
url: `/api/exercises/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 404);
});
});
@@ -0,0 +1,122 @@
// Lesson CRUD test
import { describe, it, before, after } from "node:test";
import assert from "node:assert/strict";
import { buildApp } from "../index.js";
import type { FastifyInstance } from "fastify";
let app: FastifyInstance;
let token: string;
let createdId: string;
before(async () => {
process.env.JWT_SECRET = "test-secret";
process.env.DATABASE_URL = ":memory:";
app = await buildApp();
await app.ready();
// Register and login to get a token
const regRes = await app.inject({
method: "POST",
url: "/api/auth/register",
payload: { username: `test_${Date.now()}`, password: "password123" },
});
token = regRes.json().token;
});
after(async () => {
await app.close();
});
describe("GET /api/lessons", () => {
it("returns empty list", async () => {
const res = await app.inject({
method: "GET",
url: "/api/lessons",
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 200);
const body = res.json();
assert.ok(Array.isArray(body.data));
});
});
describe("POST /api/lessons", () => {
it("creates a lesson", async () => {
const res = await app.inject({
method: "POST",
url: "/api/lessons",
headers: { authorization: `Bearer ${token}` },
payload: {
"courseId": "00000000-0000-0000-0000-000000000001",
"title": "sample-title",
"videoUrl": "sample-videourl",
"durationSec": 1,
"sortOrder": 1
},
});
assert.equal(res.statusCode, 201);
const body = res.json();
assert.ok(body.data.id);
createdId = body.data.id;
});
});
describe("GET /api/lessons/:id", () => {
it("returns the created lesson", async () => {
const res = await app.inject({
method: "GET",
url: `/api/lessons/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 200);
const body = res.json();
assert.equal(body.data.id, createdId);
});
it("returns 404 for nonexistent id", async () => {
const res = await app.inject({
method: "GET",
url: `/api/lessons/nonexistent`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 404);
});
});
describe("PUT /api/lessons/:id", () => {
it("updates the lesson", async () => {
const res = await app.inject({
method: "PUT",
url: `/api/lessons/${createdId}`,
headers: { authorization: `Bearer ${token}` },
payload: {
"courseId": "00000000-0000-0000-0000-000000000001",
"title": "sample-title",
"videoUrl": "sample-videourl",
"durationSec": 1,
"sortOrder": 1
},
});
assert.equal(res.statusCode, 200);
});
});
describe("DELETE /api/lessons/:id", () => {
it("deletes the lesson", async () => {
const res = await app.inject({
method: "DELETE",
url: `/api/lessons/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 204);
});
it("returns 404 after delete", async () => {
const res = await app.inject({
method: "GET",
url: `/api/lessons/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 404);
});
});
@@ -0,0 +1,118 @@
// Students CRUD test
import { describe, it, before, after } from "node:test";
import assert from "node:assert/strict";
import { buildApp } from "../index.js";
import type { FastifyInstance } from "fastify";
let app: FastifyInstance;
let token: string;
let createdId: string;
let payload: Record<string, unknown>;
before(async () => {
process.env.JWT_SECRET = "test-secret";
process.env.DATABASE_URL = ":memory:";
app = await buildApp();
await app.ready();
// Register and login to get a token
const regRes = await app.inject({
method: "POST",
url: "/api/auth/register",
payload: { username: `test_${Date.now()}`, password: "password123" },
});
token = regRes.json().token;
// Resolve user FK references with the registered user's real ID
payload = {
"userId": regRes.json().user.id,
"name": "sample-name",
"email": "sample-email"
};
});
after(async () => {
await app.close();
});
describe("GET /api/students", () => {
it("returns empty list", async () => {
const res = await app.inject({
method: "GET",
url: "/api/students",
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 200);
const body = res.json();
assert.ok(Array.isArray(body.data));
});
});
describe("POST /api/students", () => {
it("creates a student", async () => {
const res = await app.inject({
method: "POST",
url: "/api/students",
headers: { authorization: `Bearer ${token}` },
payload,
});
assert.equal(res.statusCode, 201);
const body = res.json();
assert.ok(body.data.id);
createdId = body.data.id;
});
});
describe("GET /api/students/:id", () => {
it("returns the created student", async () => {
const res = await app.inject({
method: "GET",
url: `/api/students/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 200);
const body = res.json();
assert.equal(body.data.id, createdId);
});
it("returns 404 for nonexistent id", async () => {
const res = await app.inject({
method: "GET",
url: `/api/students/nonexistent`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 404);
});
});
describe("PUT /api/students/:id", () => {
it("updates the student", async () => {
const res = await app.inject({
method: "PUT",
url: `/api/students/${createdId}`,
headers: { authorization: `Bearer ${token}` },
payload,
});
assert.equal(res.statusCode, 200);
});
});
describe("DELETE /api/students/:id", () => {
it("deletes the student", async () => {
const res = await app.inject({
method: "DELETE",
url: `/api/students/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 204);
});
it("returns 404 after delete", async () => {
const res = await app.inject({
method: "GET",
url: `/api/students/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 404);
});
});
@@ -0,0 +1,122 @@
// UserProgress CRUD test
import { describe, it, before, after } from "node:test";
import assert from "node:assert/strict";
import { buildApp } from "../index.js";
import type { FastifyInstance } from "fastify";
let app: FastifyInstance;
let token: string;
let createdId: string;
before(async () => {
process.env.JWT_SECRET = "test-secret";
process.env.DATABASE_URL = ":memory:";
app = await buildApp();
await app.ready();
// Register and login to get a token
const regRes = await app.inject({
method: "POST",
url: "/api/auth/register",
payload: { username: `test_${Date.now()}`, password: "password123" },
});
token = regRes.json().token;
});
after(async () => {
await app.close();
});
describe("GET /api/user_progress", () => {
it("returns empty list", async () => {
const res = await app.inject({
method: "GET",
url: "/api/user_progress",
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 200);
const body = res.json();
assert.ok(Array.isArray(body.data));
});
});
describe("POST /api/user_progress", () => {
it("creates a user_progress", async () => {
const res = await app.inject({
method: "POST",
url: "/api/user_progress",
headers: { authorization: `Bearer ${token}` },
payload: {
"userId": "00000000-0000-0000-0000-000000000001",
"lessonId": "00000000-0000-0000-0000-000000000001",
"completed": true,
"watchedSec": 1,
"UNIQUE(userId, lessonId)": "sample-unique(userid, lessonid)"
},
});
assert.equal(res.statusCode, 201);
const body = res.json();
assert.ok(body.data.id);
createdId = body.data.id;
});
});
describe("GET /api/user_progress/:id", () => {
it("returns the created user_progress", async () => {
const res = await app.inject({
method: "GET",
url: `/api/user_progress/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 200);
const body = res.json();
assert.equal(body.data.id, createdId);
});
it("returns 404 for nonexistent id", async () => {
const res = await app.inject({
method: "GET",
url: `/api/user_progress/nonexistent`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 404);
});
});
describe("PUT /api/user_progress/:id", () => {
it("updates the user_progress", async () => {
const res = await app.inject({
method: "PUT",
url: `/api/user_progress/${createdId}`,
headers: { authorization: `Bearer ${token}` },
payload: {
"userId": "00000000-0000-0000-0000-000000000001",
"lessonId": "00000000-0000-0000-0000-000000000001",
"completed": true,
"watchedSec": 1,
"UNIQUE(userId, lessonId)": "sample-unique(userid, lessonid)"
},
});
assert.equal(res.statusCode, 200);
});
});
describe("DELETE /api/user_progress/:id", () => {
it("deletes the user_progress", async () => {
const res = await app.inject({
method: "DELETE",
url: `/api/user_progress/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 204);
});
it("returns 404 after delete", async () => {
const res = await app.inject({
method: "GET",
url: `/api/user_progress/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 404);
});
});
@@ -0,0 +1,118 @@
// User CRUD test
import { describe, it, before, after } from "node:test";
import assert from "node:assert/strict";
import { buildApp } from "../index.js";
import type { FastifyInstance } from "fastify";
let app: FastifyInstance;
let token: string;
let createdId: string;
before(async () => {
process.env.JWT_SECRET = "test-secret";
process.env.DATABASE_URL = ":memory:";
app = await buildApp();
await app.ready();
// Register and login to get a token
const regRes = await app.inject({
method: "POST",
url: "/api/auth/register",
payload: { username: `test_${Date.now()}`, password: "password123" },
});
token = regRes.json().token;
});
after(async () => {
await app.close();
});
describe("GET /api/users", () => {
it("returns empty list", async () => {
const res = await app.inject({
method: "GET",
url: "/api/users",
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 200);
const body = res.json();
assert.ok(Array.isArray(body.data));
});
});
describe("POST /api/users", () => {
it("creates a user", async () => {
const res = await app.inject({
method: "POST",
url: "/api/users",
headers: { authorization: `Bearer ${token}` },
payload: {
"phone": "sample-phone",
"nickname": "sample-nickname",
"avatarUrl": "sample-avatarurl"
},
});
assert.equal(res.statusCode, 201);
const body = res.json();
assert.ok(body.data.id);
createdId = body.data.id;
});
});
describe("GET /api/users/:id", () => {
it("returns the created user", async () => {
const res = await app.inject({
method: "GET",
url: `/api/users/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 200);
const body = res.json();
assert.equal(body.data.id, createdId);
});
it("returns 404 for nonexistent id", async () => {
const res = await app.inject({
method: "GET",
url: `/api/users/nonexistent`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 404);
});
});
describe("PUT /api/users/:id", () => {
it("updates the user", async () => {
const res = await app.inject({
method: "PUT",
url: `/api/users/${createdId}`,
headers: { authorization: `Bearer ${token}` },
payload: {
"phone": "sample-phone",
"nickname": "sample-nickname",
"avatarUrl": "sample-avatarurl"
},
});
assert.equal(res.statusCode, 200);
});
});
describe("DELETE /api/users/:id", () => {
it("deletes the user", async () => {
const res = await app.inject({
method: "DELETE",
url: `/api/users/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 204);
});
it("returns 404 after delete", async () => {
const res = await app.inject({
method: "GET",
url: `/api/users/${createdId}`,
headers: { authorization: `Bearer ${token}` },
});
assert.equal(res.statusCode, 404);
});
});
@@ -0,0 +1,93 @@
// SQLite database client (sql.js — pure WASM, no native deps)
import initSqlJs, { type Database, type BindParams } from "sql.js";
import { createTables } from "./schema.js";
let db: Database | null = null;
let initPromise: Promise<Database> | null = null;
/** Initialize the database (call once at startup). */
export async function initDb(dbPath?: string): Promise<Database> {
if (db) return db;
if (initPromise) return initPromise;
initPromise = (async () => {
const SQL = await initSqlJs();
const path = dbPath || process.env.DATABASE_URL || ":memory:";
// Try to load existing database from file
let buffer: ArrayLike<number> | undefined;
if (path !== ":memory:") {
try {
const fs = await import("node:fs/promises");
const data = await fs.readFile(path);
buffer = new Uint8Array(data);
} catch {
// File doesn't exist yet — start fresh
}
}
db = new SQL.Database(buffer);
db.run("PRAGMA foreign_keys = ON");
createTables(db);
return db;
})();
return initPromise;
}
/** Get the initialized database (must call initDb first). */
export function getDb(): Database {
if (!db) throw new Error("Database not initialized. Call initDb() first.");
return db;
}
/** Save database to disk. */
export async function saveDb(dbPath?: string): Promise<void> {
if (!db) return;
const path = dbPath || process.env.DATABASE_URL || "./data/app.db";
if (path === ":memory:") return;
const fs = await import("node:fs/promises");
const { dirname } = await import("node:path");
await fs.mkdir(dirname(path), { recursive: true });
const data = db.export();
await fs.writeFile(path, Buffer.from(data));
}
export async function closeDb(): Promise<void> {
if (db) {
await saveDb();
db.close();
db = null;
initPromise = null;
}
}
// Helper: run a query and return all rows as objects
export function queryAll<T = Record<string, unknown>>(sql: string, params: BindParams = []): T[] {
const d = getDb();
const stmt = d.prepare(sql);
if (params) stmt.bind(params);
const results: T[] = [];
while (stmt.step()) {
const row = stmt.getAsObject();
results.push(row as unknown as T);
}
stmt.free();
return results;
}
// Helper: run a query and return the first row
export function queryOne<T = Record<string, unknown>>(sql: string, params: BindParams = []): T | undefined {
const rows = queryAll<T>(sql, params);
return rows[0];
}
// Helper: run a mutation and return { changes, lastInsertRowid }
export function execute(sql: string, params: BindParams = []): { changes: number; lastInsertRowid: number } {
const d = getDb();
d.run(sql, params);
return {
changes: d.getRowsModified(),
lastInsertRowid: 0,
};
}
@@ -0,0 +1,16 @@
// Auto-generated SQLite schema
import type { Database } from "sql.js";
export function createTables(db: Database): void {
const statements = [
"CREATE TABLE IF NOT EXISTS users (\n id TEXT PRIMARY KEY DEFAULT (lower(hex(randomblob(16)))),\n username TEXT NOT NULL UNIQUE,\n password_hash TEXT NOT NULL,\n nickname TEXT,\n role TEXT DEFAULT 'user',\n phone TEXT,\n avatar_url TEXT,\n created_at TEXT,\n updated_at TEXT\n);",
"CREATE TABLE IF NOT EXISTS courses (\n id TEXT PRIMARY KEY DEFAULT (lower(hex(randomblob(16)))),\n user_id TEXT REFERENCES users(id),\n title TEXT NOT NULL,\n description TEXT,\n instructor TEXT,\n price REAL,\n cover_url TEXT,\n category TEXT,\n created_at TEXT,\n updated_at TEXT\n);",
"CREATE TABLE IF NOT EXISTS chapters (\n id TEXT PRIMARY KEY DEFAULT (lower(hex(randomblob(16)))),\n user_id TEXT REFERENCES users(id),\n course_id TEXT REFERENCES courses(id),\n title TEXT NOT NULL,\n sort_order INTEGER,\n duration_min INTEGER,\n created_at TEXT,\n updated_at TEXT\n);",
"CREATE TABLE IF NOT EXISTS students (\n id TEXT PRIMARY KEY DEFAULT (lower(hex(randomblob(16)))),\n user_id TEXT REFERENCES users(id),\n name TEXT NOT NULL,\n email TEXT,\n enrolled_at TEXT,\n progress REAL,\n created_at TEXT,\n updated_at TEXT\n);",
"CREATE TABLE IF NOT EXISTS assignments (\n id TEXT PRIMARY KEY DEFAULT (lower(hex(randomblob(16)))),\n user_id TEXT REFERENCES users(id),\n course_id TEXT REFERENCES courses(id),\n title TEXT NOT NULL,\n description TEXT,\n due_date TEXT,\n max_score INTEGER,\n created_at TEXT,\n updated_at TEXT\n);"
];
for (const sql of statements) {
const trimmed = sql.trim();
if (trimmed) db.run(trimmed);
}
}
+71
View File
@@ -0,0 +1,71 @@
// EduPlatform — Fastify Backend Server
import Fastify from "fastify";
import cors from "@fastify/cors";
import fjwt from "@fastify/jwt";
import { initDb, closeDb } from "./db/client.js";
import { authRoutes } from "./routes/auth.js";
import { coursesRoutes } from "./routes/courses.js";
import { chaptersRoutes } from "./routes/chapters.js";
import { studentsRoutes } from "./routes/students.js";
import { assignmentsRoutes } from "./routes/assignments.js";
const JWT_SECRET = process.env.JWT_SECRET || "change-me-in-production-c08d8e17";
export async function buildApp() {
const app = Fastify({
logger: {
level: process.env.LOG_LEVEL || "info",
transport: process.env.NODE_ENV !== "production"
? { target: "pino-pretty", options: { colorize: true } }
: undefined,
},
});
// Init database
await initDb();
// Plugins
await app.register(cors, {
origin: process.env.CORS_ORIGIN || "*",
methods: ["GET", "POST", "PUT", "DELETE", "PATCH", "OPTIONS"],
});
await app.register(fjwt, { secret: JWT_SECRET });
// Routes
await app.register(authRoutes, { prefix: "/api/auth" });
await app.register(coursesRoutes, { prefix: "/api/courses" });
await app.register(chaptersRoutes, { prefix: "/api/chapters" });
await app.register(studentsRoutes, { prefix: "/api/students" });
await app.register(assignmentsRoutes, { prefix: "/api/assignments" });
// Health check
app.get("/api/health", async () => ({ status: "ok", timestamp: new Date().toISOString() }));
// Graceful shutdown
app.addHook("onClose", async () => {
closeDb();
});
return app;
}
// Start server if called directly (not when imported by tests)
const port = parseInt(process.env.PORT || "3001", 10);
const host = process.env.HOST || "0.0.0.0";
async function main() {
const app = await buildApp();
try {
await app.listen({ port, host });
} catch (err) {
app.log.error(err);
process.exit(1);
}
}
// Guard: only run when executed directly, not when imported
const isMain = process.argv[1] && (import.meta.url === `file://${process.argv[1]}` || import.meta.url.endsWith(process.argv[1]) || process.argv[1].endsWith("/src/index.ts") || process.argv[1].endsWith("/src/index.js"));
if (isMain) {
main();
}
@@ -0,0 +1,41 @@
// JWT Authentication Middleware
import type { FastifyRequest, FastifyReply } from "fastify";
import type { JwtPayload } from "../types/index.js";
/**
* Verify JWT token and attach user to request.
*/
export async function authenticate(request: FastifyRequest, reply: FastifyReply): Promise<void> {
try {
await request.jwtVerify();
} catch (err) {
reply.status(401).send({ error: "Unauthorized", message: "Invalid or expired token", statusCode: 401 });
}
}
/** Helper to get typed user from request (after authenticate). */
export function getUser(request: FastifyRequest): JwtPayload {
return request.user as unknown as JwtPayload;
}
/**
* Require admin role.
* Must be used after authenticate.
*/
export async function requireAdmin(request: FastifyRequest, reply: FastifyReply): Promise<void> {
const user = request.user as unknown as JwtPayload | undefined;
if (!user || user.role !== "admin") {
reply.status(403).send({ error: "Forbidden", message: "Admin access required", statusCode: 403 });
}
}
/**
* Optional auth: attach user if token present, but don't fail if missing.
*/
export async function optionalAuth(request: FastifyRequest): Promise<void> {
try {
await request.jwtVerify();
} catch {
// No token or invalid — continue without user
}
}
@@ -0,0 +1,51 @@
// Auto-generated Assignments routes
import type { FastifyInstance } from "fastify";
import { authenticate } from "../middleware/auth.js";
import { AssignmentsService } from "../services/assignment.js";
import type { CreateAssignmentsInput, UpdateAssignmentsInput } from "../types/index.js";
const service = new AssignmentsService();
export async function assignmentsRoutes(app: FastifyInstance): Promise<void> {
// All routes require authentication
app.addHook("onRequest", authenticate);
// GET /api/assignments — list
app.get("/", async (request, reply) => {
const items = service.list();
return { data: items };
});
// GET /api/assignments/:id — get by id
app.get<{ Params: { id: string } }>("/:id", async (request, reply) => {
const item = service.getById(request.params.id);
if (!item) {
return reply.status(404).send({ error: "Not Found", message: "Assignments not found", statusCode: 404 });
}
return { data: item };
});
// POST /api/assignments — create
app.post<{ Body: CreateAssignmentsInput }>("/", async (request, reply) => {
const item = service.create(request.body);
return reply.status(201).send({ data: item });
});
// PUT /api/assignments/:id — update
app.put<{ Params: { id: string }; Body: UpdateAssignmentsInput }>("/:id", async (request, reply) => {
const item = service.update(request.params.id, request.body);
if (!item) {
return reply.status(404).send({ error: "Not Found", message: "Assignments not found", statusCode: 404 });
}
return { data: item };
});
// DELETE /api/assignments/:id — delete
app.delete<{ Params: { id: string } }>("/:id", async (request, reply) => {
const deleted = service.delete(request.params.id);
if (!deleted) {
return reply.status(404).send({ error: "Not Found", message: "Assignments not found", statusCode: 404 });
}
return reply.status(204).send();
});
}
@@ -0,0 +1,121 @@
// Authentication routes
import type { FastifyInstance } from "fastify";
import bcrypt from "bcrypt";
import { queryOne, execute } from "../db/client.js";
import { authenticate } from "../middleware/auth.js";
import type { User, RegisterInput, LoginInput, AuthResponse } from "../types/index.js";
const SALT_ROUNDS = 10;
export async function authRoutes(app: FastifyInstance): Promise<void> {
// POST /api/auth/register
app.post<{ Body: RegisterInput }>("/register", async (request, reply) => {
const { username, password, nickname } = request.body;
if (!username || !password) {
return reply.status(400).send({
error: "Bad Request",
message: "Username and password are required",
statusCode: 400,
});
}
if (password.length < 6) {
return reply.status(400).send({
error: "Bad Request",
message: "Password must be at least 6 characters",
statusCode: 400,
});
}
const existing = queryOne("SELECT id FROM users WHERE username = ?", [username]);
if (existing) {
return reply.status(409).send({
error: "Conflict",
message: "Username already exists",
statusCode: 409,
});
}
const id = crypto.randomUUID();
const passwordHash = await bcrypt.hash(password, SALT_ROUNDS);
const now = new Date().toISOString();
execute(
"INSERT INTO users (id, username, password_hash, nickname, created_at, updated_at) VALUES (?, ?, ?, ?, ?, ?)",
[id, username, passwordHash, nickname || username, now, now]
);
const user = queryOne<User>(
"SELECT id, username, nickname, role, created_at, updated_at FROM users WHERE id = ?",
[id]
);
if (!user) {
return reply.status(500).send({ error: "Internal Error", message: "Failed to create user", statusCode: 500 });
}
const token = app.jwt.sign({ userId: id, username, role: user.role });
return reply.status(201).send({ token, user } satisfies AuthResponse);
});
// POST /api/auth/login
app.post<{ Body: LoginInput }>("/login", async (request, reply) => {
const { username, password } = request.body;
if (!username || !password) {
return reply.status(400).send({
error: "Bad Request",
message: "Username and password are required",
statusCode: 400,
});
}
const user = queryOne<User & { password_hash: string }>(
"SELECT * FROM users WHERE username = ?",
[username]
);
if (!user) {
return reply.status(401).send({
error: "Unauthorized",
message: "Invalid username or password",
statusCode: 401,
});
}
const valid = await bcrypt.compare(password, user.password_hash);
if (!valid) {
return reply.status(401).send({
error: "Unauthorized",
message: "Invalid username or password",
statusCode: 401,
});
}
const token = app.jwt.sign({ userId: user.id, username: user.username, role: user.role });
const { password_hash, ...safeUser } = user;
return { token, user: safeUser } satisfies AuthResponse;
});
// GET /api/auth/me — current user info
app.get("/me", { onRequest: [authenticate] }, async (request, reply) => {
const jwtUser = request.user as unknown as { userId: string };
const user = queryOne<User>(
"SELECT id, username, nickname, role, created_at, updated_at FROM users WHERE id = ?",
[jwtUser.userId]
);
if (!user) {
return reply.status(404).send({
error: "Not Found",
message: "User not found",
statusCode: 404,
});
}
return { data: user };
});
}
@@ -0,0 +1,51 @@
// Auto-generated Chapters routes
import type { FastifyInstance } from "fastify";
import { authenticate } from "../middleware/auth.js";
import { ChaptersService } from "../services/chapter.js";
import type { CreateChaptersInput, UpdateChaptersInput } from "../types/index.js";
const service = new ChaptersService();
export async function chaptersRoutes(app: FastifyInstance): Promise<void> {
// All routes require authentication
app.addHook("onRequest", authenticate);
// GET /api/chapters — list
app.get("/", async (request, reply) => {
const items = service.list();
return { data: items };
});
// GET /api/chapters/:id — get by id
app.get<{ Params: { id: string } }>("/:id", async (request, reply) => {
const item = service.getById(request.params.id);
if (!item) {
return reply.status(404).send({ error: "Not Found", message: "Chapters not found", statusCode: 404 });
}
return { data: item };
});
// POST /api/chapters — create
app.post<{ Body: CreateChaptersInput }>("/", async (request, reply) => {
const item = service.create(request.body);
return reply.status(201).send({ data: item });
});
// PUT /api/chapters/:id — update
app.put<{ Params: { id: string }; Body: UpdateChaptersInput }>("/:id", async (request, reply) => {
const item = service.update(request.params.id, request.body);
if (!item) {
return reply.status(404).send({ error: "Not Found", message: "Chapters not found", statusCode: 404 });
}
return { data: item };
});
// DELETE /api/chapters/:id — delete
app.delete<{ Params: { id: string } }>("/:id", async (request, reply) => {
const deleted = service.delete(request.params.id);
if (!deleted) {
return reply.status(404).send({ error: "Not Found", message: "Chapters not found", statusCode: 404 });
}
return reply.status(204).send();
});
}
@@ -0,0 +1,51 @@
// Auto-generated Courses routes
import type { FastifyInstance } from "fastify";
import { authenticate } from "../middleware/auth.js";
import { CoursesService } from "../services/cours.js";
import type { CreateCoursesInput, UpdateCoursesInput } from "../types/index.js";
const service = new CoursesService();
export async function coursesRoutes(app: FastifyInstance): Promise<void> {
// All routes require authentication
app.addHook("onRequest", authenticate);
// GET /api/courses — list
app.get("/", async (request, reply) => {
const items = service.list();
return { data: items };
});
// GET /api/courses/:id — get by id
app.get<{ Params: { id: string } }>("/:id", async (request, reply) => {
const item = service.getById(request.params.id);
if (!item) {
return reply.status(404).send({ error: "Not Found", message: "Courses not found", statusCode: 404 });
}
return { data: item };
});
// POST /api/courses — create
app.post<{ Body: CreateCoursesInput }>("/", async (request, reply) => {
const item = service.create(request.body);
return reply.status(201).send({ data: item });
});
// PUT /api/courses/:id — update
app.put<{ Params: { id: string }; Body: UpdateCoursesInput }>("/:id", async (request, reply) => {
const item = service.update(request.params.id, request.body);
if (!item) {
return reply.status(404).send({ error: "Not Found", message: "Courses not found", statusCode: 404 });
}
return { data: item };
});
// DELETE /api/courses/:id — delete
app.delete<{ Params: { id: string } }>("/:id", async (request, reply) => {
const deleted = service.delete(request.params.id);
if (!deleted) {
return reply.status(404).send({ error: "Not Found", message: "Courses not found", statusCode: 404 });
}
return reply.status(204).send();
});
}
@@ -0,0 +1,51 @@
// Auto-generated Exercis routes
import type { FastifyInstance } from "fastify";
import { authenticate } from "../middleware/auth.js";
import { ExercisService } from "../services/exercis.js";
import type { CreateExercisInput, UpdateExercisInput } from "../types/index.js";
const service = new ExercisService();
export async function exercisesRoutes(app: FastifyInstance): Promise<void> {
// All routes require authentication
app.addHook("onRequest", authenticate);
// GET /api/exercises — list
app.get("/", async (request, reply) => {
const items = service.list();
return { data: items };
});
// GET /api/exercises/:id — get by id
app.get<{ Params: { id: string } }>("/:id", async (request, reply) => {
const item = service.getById(request.params.id);
if (!item) {
return reply.status(404).send({ error: "Not Found", message: "Exercis not found", statusCode: 404 });
}
return { data: item };
});
// POST /api/exercises — create
app.post<{ Body: CreateExercisInput }>("/", async (request, reply) => {
const item = service.create(request.body);
return reply.status(201).send({ data: item });
});
// PUT /api/exercises/:id — update
app.put<{ Params: { id: string }; Body: UpdateExercisInput }>("/:id", async (request, reply) => {
const item = service.update(request.params.id, request.body);
if (!item) {
return reply.status(404).send({ error: "Not Found", message: "Exercis not found", statusCode: 404 });
}
return { data: item };
});
// DELETE /api/exercises/:id — delete
app.delete<{ Params: { id: string } }>("/:id", async (request, reply) => {
const deleted = service.delete(request.params.id);
if (!deleted) {
return reply.status(404).send({ error: "Not Found", message: "Exercis not found", statusCode: 404 });
}
return reply.status(204).send();
});
}
@@ -0,0 +1,51 @@
// Auto-generated Lesson routes
import type { FastifyInstance } from "fastify";
import { authenticate } from "../middleware/auth.js";
import { LessonService } from "../services/lesson.js";
import type { CreateLessonInput, UpdateLessonInput } from "../types/index.js";
const service = new LessonService();
export async function lessonsRoutes(app: FastifyInstance): Promise<void> {
// All routes require authentication
app.addHook("onRequest", authenticate);
// GET /api/lessons — list
app.get("/", async (request, reply) => {
const items = service.list();
return { data: items };
});
// GET /api/lessons/:id — get by id
app.get<{ Params: { id: string } }>("/:id", async (request, reply) => {
const item = service.getById(request.params.id);
if (!item) {
return reply.status(404).send({ error: "Not Found", message: "Lesson not found", statusCode: 404 });
}
return { data: item };
});
// POST /api/lessons — create
app.post<{ Body: CreateLessonInput }>("/", async (request, reply) => {
const item = service.create(request.body);
return reply.status(201).send({ data: item });
});
// PUT /api/lessons/:id — update
app.put<{ Params: { id: string }; Body: UpdateLessonInput }>("/:id", async (request, reply) => {
const item = service.update(request.params.id, request.body);
if (!item) {
return reply.status(404).send({ error: "Not Found", message: "Lesson not found", statusCode: 404 });
}
return { data: item };
});
// DELETE /api/lessons/:id — delete
app.delete<{ Params: { id: string } }>("/:id", async (request, reply) => {
const deleted = service.delete(request.params.id);
if (!deleted) {
return reply.status(404).send({ error: "Not Found", message: "Lesson not found", statusCode: 404 });
}
return reply.status(204).send();
});
}
@@ -0,0 +1,51 @@
// Auto-generated Students routes
import type { FastifyInstance } from "fastify";
import { authenticate } from "../middleware/auth.js";
import { StudentsService } from "../services/student.js";
import type { CreateStudentsInput, UpdateStudentsInput } from "../types/index.js";
const service = new StudentsService();
export async function studentsRoutes(app: FastifyInstance): Promise<void> {
// All routes require authentication
app.addHook("onRequest", authenticate);
// GET /api/students — list
app.get("/", async (request, reply) => {
const items = service.list();
return { data: items };
});
// GET /api/students/:id — get by id
app.get<{ Params: { id: string } }>("/:id", async (request, reply) => {
const item = service.getById(request.params.id);
if (!item) {
return reply.status(404).send({ error: "Not Found", message: "Students not found", statusCode: 404 });
}
return { data: item };
});
// POST /api/students — create
app.post<{ Body: CreateStudentsInput }>("/", async (request, reply) => {
const item = service.create(request.body);
return reply.status(201).send({ data: item });
});
// PUT /api/students/:id — update
app.put<{ Params: { id: string }; Body: UpdateStudentsInput }>("/:id", async (request, reply) => {
const item = service.update(request.params.id, request.body);
if (!item) {
return reply.status(404).send({ error: "Not Found", message: "Students not found", statusCode: 404 });
}
return { data: item };
});
// DELETE /api/students/:id — delete
app.delete<{ Params: { id: string } }>("/:id", async (request, reply) => {
const deleted = service.delete(request.params.id);
if (!deleted) {
return reply.status(404).send({ error: "Not Found", message: "Students not found", statusCode: 404 });
}
return reply.status(204).send();
});
}
@@ -0,0 +1,51 @@
// Auto-generated UserProgress routes
import type { FastifyInstance } from "fastify";
import { authenticate } from "../middleware/auth.js";
import { UserProgressService } from "../services/user_progress.js";
import type { CreateUserProgressInput, UpdateUserProgressInput } from "../types/index.js";
const service = new UserProgressService();
export async function user_progressRoutes(app: FastifyInstance): Promise<void> {
// All routes require authentication
app.addHook("onRequest", authenticate);
// GET /api/user_progress — list
app.get("/", async (request, reply) => {
const items = service.list();
return { data: items };
});
// GET /api/user_progress/:id — get by id
app.get<{ Params: { id: string } }>("/:id", async (request, reply) => {
const item = service.getById(request.params.id);
if (!item) {
return reply.status(404).send({ error: "Not Found", message: "UserProgress not found", statusCode: 404 });
}
return { data: item };
});
// POST /api/user_progress — create
app.post<{ Body: CreateUserProgressInput }>("/", async (request, reply) => {
const item = service.create(request.body);
return reply.status(201).send({ data: item });
});
// PUT /api/user_progress/:id — update
app.put<{ Params: { id: string }; Body: UpdateUserProgressInput }>("/:id", async (request, reply) => {
const item = service.update(request.params.id, request.body);
if (!item) {
return reply.status(404).send({ error: "Not Found", message: "UserProgress not found", statusCode: 404 });
}
return { data: item };
});
// DELETE /api/user_progress/:id — delete
app.delete<{ Params: { id: string } }>("/:id", async (request, reply) => {
const deleted = service.delete(request.params.id);
if (!deleted) {
return reply.status(404).send({ error: "Not Found", message: "UserProgress not found", statusCode: 404 });
}
return reply.status(204).send();
});
}
@@ -0,0 +1,51 @@
// Auto-generated User routes
import type { FastifyInstance } from "fastify";
import { authenticate } from "../middleware/auth.js";
import { UserService } from "../services/user.js";
import type { CreateUserInput, UpdateUserInput } from "../types/index.js";
const service = new UserService();
export async function usersRoutes(app: FastifyInstance): Promise<void> {
// All routes require authentication
app.addHook("onRequest", authenticate);
// GET /api/users — list
app.get("/", async (request, reply) => {
const items = service.list();
return { data: items };
});
// GET /api/users/:id — get by id
app.get<{ Params: { id: string } }>("/:id", async (request, reply) => {
const item = service.getById(request.params.id);
if (!item) {
return reply.status(404).send({ error: "Not Found", message: "User not found", statusCode: 404 });
}
return { data: item };
});
// POST /api/users — create
app.post<{ Body: CreateUserInput }>("/", async (request, reply) => {
const item = service.create(request.body);
return reply.status(201).send({ data: item });
});
// PUT /api/users/:id — update
app.put<{ Params: { id: string }; Body: UpdateUserInput }>("/:id", async (request, reply) => {
const item = service.update(request.params.id, request.body);
if (!item) {
return reply.status(404).send({ error: "Not Found", message: "User not found", statusCode: 404 });
}
return { data: item };
});
// DELETE /api/users/:id — delete
app.delete<{ Params: { id: string } }>("/:id", async (request, reply) => {
const deleted = service.delete(request.params.id);
if (!deleted) {
return reply.status(404).send({ error: "Not Found", message: "User not found", statusCode: 404 });
}
return reply.status(204).send();
});
}
@@ -0,0 +1,55 @@
// Auto-generated Assignments service
import { queryAll, queryOne, execute } from "../db/client.js";
import type { Assignments, CreateAssignmentsInput, UpdateAssignmentsInput } from "../types/index.js";
export class AssignmentsService {
/** List all assignments */
list(): Assignments[] {
return queryAll<Assignments>("SELECT * FROM assignments ORDER BY created_at DESC");
}
/** Get by ID */
getById(id: string): Assignments | undefined {
return queryOne<Assignments>("SELECT * FROM assignments WHERE id = ?", [id]);
}
/** Create */
create(input: CreateAssignmentsInput): Assignments {
const id = crypto.randomUUID();
const now = new Date().toISOString();
const cols = ["id", "user_id", "course_id", "title", "description", "due_date", "created_at", "updated_at"];
const values = [id, input.userId ?? null, input.courseId ?? null, input.title ?? null, input.description ?? null, input.dueDate ?? null, now, now];
execute(`INSERT INTO assignments (${cols.join(", ")}) VALUES (?, ?, ?, ?, ?, ?, ?, ?)`, values);
return this.getById(id)!;
}
/** Update */
update(id: string, input: UpdateAssignmentsInput): Assignments | undefined {
const existing = this.getById(id);
if (!existing) return undefined;
const sets: string[] = [];
const values: unknown[] = [];
if (input.userId !== undefined) { sets.push("user_id = ?"); values.push(input.userId); }
if (input.courseId !== undefined) { sets.push("course_id = ?"); values.push(input.courseId); }
if (input.title !== undefined) { sets.push("title = ?"); values.push(input.title); }
if (input.description !== undefined) { sets.push("description = ?"); values.push(input.description); }
if (input.dueDate !== undefined) { sets.push("due_date = ?"); values.push(input.dueDate); }
if (sets.length === 0) return existing;
sets.push("updated_at = ?");
values.push(new Date().toISOString());
values.push(id);
execute(`UPDATE assignments SET ${sets.join(", ")} WHERE id = ?`, values);
return this.getById(id)!;
}
/** Delete */
delete(id: string): boolean {
const result = execute("DELETE FROM assignments WHERE id = ?", [id]);
return result.changes > 0;
}
}
@@ -0,0 +1,54 @@
// Auto-generated Chapters service
import { queryAll, queryOne, execute } from "../db/client.js";
import type { Chapters, CreateChaptersInput, UpdateChaptersInput } from "../types/index.js";
export class ChaptersService {
/** List all chapters */
list(): Chapters[] {
return queryAll<Chapters>("SELECT * FROM chapters ORDER BY created_at DESC");
}
/** Get by ID */
getById(id: string): Chapters | undefined {
return queryOne<Chapters>("SELECT * FROM chapters WHERE id = ?", [id]);
}
/** Create */
create(input: CreateChaptersInput): Chapters {
const id = crypto.randomUUID();
const now = new Date().toISOString();
const cols = ["id", "user_id", "course_id", "title", "duration_min", "created_at", "updated_at"];
const values = [id, input.userId ?? null, input.courseId ?? null, input.title ?? null, input.durationMin ?? null, now, now];
execute(`INSERT INTO chapters (${cols.join(", ")}) VALUES (?, ?, ?, ?, ?, ?, ?)`, values);
return this.getById(id)!;
}
/** Update */
update(id: string, input: UpdateChaptersInput): Chapters | undefined {
const existing = this.getById(id);
if (!existing) return undefined;
const sets: string[] = [];
const values: unknown[] = [];
if (input.userId !== undefined) { sets.push("user_id = ?"); values.push(input.userId); }
if (input.courseId !== undefined) { sets.push("course_id = ?"); values.push(input.courseId); }
if (input.title !== undefined) { sets.push("title = ?"); values.push(input.title); }
if (input.durationMin !== undefined) { sets.push("duration_min = ?"); values.push(input.durationMin); }
if (sets.length === 0) return existing;
sets.push("updated_at = ?");
values.push(new Date().toISOString());
values.push(id);
execute(`UPDATE chapters SET ${sets.join(", ")} WHERE id = ?`, values);
return this.getById(id)!;
}
/** Delete */
delete(id: string): boolean {
const result = execute("DELETE FROM chapters WHERE id = ?", [id]);
return result.changes > 0;
}
}
@@ -0,0 +1,57 @@
// Auto-generated Courses service
import { queryAll, queryOne, execute } from "../db/client.js";
import type { Courses, CreateCoursesInput, UpdateCoursesInput } from "../types/index.js";
export class CoursesService {
/** List all courses */
list(): Courses[] {
return queryAll<Courses>("SELECT * FROM courses ORDER BY created_at DESC");
}
/** Get by ID */
getById(id: string): Courses | undefined {
return queryOne<Courses>("SELECT * FROM courses WHERE id = ?", [id]);
}
/** Create */
create(input: CreateCoursesInput): Courses {
const id = crypto.randomUUID();
const now = new Date().toISOString();
const cols = ["id", "user_id", "title", "description", "instructor", "price", "cover_url", "category", "created_at", "updated_at"];
const values = [id, input.userId ?? null, input.title ?? null, input.description ?? null, input.instructor ?? null, input.price ?? null, input.coverUrl ?? null, input.category ?? null, now, now];
execute(`INSERT INTO courses (${cols.join(", ")}) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)`, values);
return this.getById(id)!;
}
/** Update */
update(id: string, input: UpdateCoursesInput): Courses | undefined {
const existing = this.getById(id);
if (!existing) return undefined;
const sets: string[] = [];
const values: unknown[] = [];
if (input.userId !== undefined) { sets.push("user_id = ?"); values.push(input.userId); }
if (input.title !== undefined) { sets.push("title = ?"); values.push(input.title); }
if (input.description !== undefined) { sets.push("description = ?"); values.push(input.description); }
if (input.instructor !== undefined) { sets.push("instructor = ?"); values.push(input.instructor); }
if (input.price !== undefined) { sets.push("price = ?"); values.push(input.price); }
if (input.coverUrl !== undefined) { sets.push("cover_url = ?"); values.push(input.coverUrl); }
if (input.category !== undefined) { sets.push("category = ?"); values.push(input.category); }
if (sets.length === 0) return existing;
sets.push("updated_at = ?");
values.push(new Date().toISOString());
values.push(id);
execute(`UPDATE courses SET ${sets.join(", ")} WHERE id = ?`, values);
return this.getById(id)!;
}
/** Delete */
delete(id: string): boolean {
const result = execute("DELETE FROM courses WHERE id = ?", [id]);
return result.changes > 0;
}
}
@@ -0,0 +1,56 @@
// Auto-generated Exercis service
import { queryAll, queryOne, execute } from "../db/client.js";
import type { Exercis, CreateExercisInput, UpdateExercisInput } from "../types/index.js";
export class ExercisService {
/** List all exercises */
list(): Exercis[] {
return queryAll<Exercis>("SELECT * FROM exercises ORDER BY created_at DESC");
}
/** Get by ID */
getById(id: string): Exercis | undefined {
return queryOne<Exercis>("SELECT * FROM exercises WHERE id = ?", [id]);
}
/** Create */
create(input: CreateExercisInput): Exercis {
const id = crypto.randomUUID();
const now = new Date().toISOString();
const hasCreatedAt = false;
const hasUpdatedAt = false;
const cols = ["id", "lesson_id", "question", "options", "answer"];
const placeholders = cols.map(() => "?").join(", ");
const values = [id, input.lessonId ?? null, input.question ?? null, input.options ?? null, input.answer ?? null];
execute(`INSERT INTO exercises (${cols.join(", ")}) VALUES (${placeholders})`, values);
return this.getById(id)!;
}
/** Update */
update(id: string, input: UpdateExercisInput): Exercis | undefined {
const existing = this.getById(id);
if (!existing) return undefined;
const sets: string[] = [];
const values: unknown[] = [];
if (input.lessonId !== undefined) { sets.push("lesson_id = ?"); values.push(input.lessonId); }
if (input.question !== undefined) { sets.push("question = ?"); values.push(input.question); }
if (input.options !== undefined) { sets.push("options = ?"); values.push(input.options); }
if (input.answer !== undefined) { sets.push("answer = ?"); values.push(input.answer); }
if (sets.length === 0) return existing;
values.push(id);
execute(`UPDATE exercises SET ${sets.join(", ")} WHERE id = ?`, values);
return this.getById(id)!;
}
/** Delete */
delete(id: string): boolean {
const result = execute("DELETE FROM exercises WHERE id = ?", [id]);
return result.changes > 0;
}
}
@@ -0,0 +1,57 @@
// Auto-generated Lesson service
import { queryAll, queryOne, execute } from "../db/client.js";
import type { Lesson, CreateLessonInput, UpdateLessonInput } from "../types/index.js";
export class LessonService {
/** List all lessons */
list(): Lesson[] {
return queryAll<Lesson>("SELECT * FROM lessons ORDER BY created_at DESC");
}
/** Get by ID */
getById(id: string): Lesson | undefined {
return queryOne<Lesson>("SELECT * FROM lessons WHERE id = ?", [id]);
}
/** Create */
create(input: CreateLessonInput): Lesson {
const id = crypto.randomUUID();
const now = new Date().toISOString();
const hasCreatedAt = false;
const hasUpdatedAt = false;
const cols = ["id", "course_id", "title", "video_url", "duration_sec", "sort_order"];
const placeholders = cols.map(() => "?").join(", ");
const values = [id, input.courseId ?? null, input.title ?? null, input.videoUrl ?? null, input.durationSec ?? null, input.sortOrder ?? null];
execute(`INSERT INTO lessons (${cols.join(", ")}) VALUES (${placeholders})`, values);
return this.getById(id)!;
}
/** Update */
update(id: string, input: UpdateLessonInput): Lesson | undefined {
const existing = this.getById(id);
if (!existing) return undefined;
const sets: string[] = [];
const values: unknown[] = [];
if (input.courseId !== undefined) { sets.push("course_id = ?"); values.push(input.courseId); }
if (input.title !== undefined) { sets.push("title = ?"); values.push(input.title); }
if (input.videoUrl !== undefined) { sets.push("video_url = ?"); values.push(input.videoUrl); }
if (input.durationSec !== undefined) { sets.push("duration_sec = ?"); values.push(input.durationSec); }
if (input.sortOrder !== undefined) { sets.push("sort_order = ?"); values.push(input.sortOrder); }
if (sets.length === 0) return existing;
values.push(id);
execute(`UPDATE lessons SET ${sets.join(", ")} WHERE id = ?`, values);
return this.getById(id)!;
}
/** Delete */
delete(id: string): boolean {
const result = execute("DELETE FROM lessons WHERE id = ?", [id]);
return result.changes > 0;
}
}
@@ -0,0 +1,53 @@
// Auto-generated Students service
import { queryAll, queryOne, execute } from "../db/client.js";
import type { Students, CreateStudentsInput, UpdateStudentsInput } from "../types/index.js";
export class StudentsService {
/** List all students */
list(): Students[] {
return queryAll<Students>("SELECT * FROM students ORDER BY created_at DESC");
}
/** Get by ID */
getById(id: string): Students | undefined {
return queryOne<Students>("SELECT * FROM students WHERE id = ?", [id]);
}
/** Create */
create(input: CreateStudentsInput): Students {
const id = crypto.randomUUID();
const now = new Date().toISOString();
const cols = ["id", "user_id", "name", "email", "created_at", "updated_at"];
const values = [id, input.userId ?? null, input.name ?? null, input.email ?? null, now, now];
execute(`INSERT INTO students (${cols.join(", ")}) VALUES (?, ?, ?, ?, ?, ?)`, values);
return this.getById(id)!;
}
/** Update */
update(id: string, input: UpdateStudentsInput): Students | undefined {
const existing = this.getById(id);
if (!existing) return undefined;
const sets: string[] = [];
const values: unknown[] = [];
if (input.userId !== undefined) { sets.push("user_id = ?"); values.push(input.userId); }
if (input.name !== undefined) { sets.push("name = ?"); values.push(input.name); }
if (input.email !== undefined) { sets.push("email = ?"); values.push(input.email); }
if (sets.length === 0) return existing;
sets.push("updated_at = ?");
values.push(new Date().toISOString());
values.push(id);
execute(`UPDATE students SET ${sets.join(", ")} WHERE id = ?`, values);
return this.getById(id)!;
}
/** Delete */
delete(id: string): boolean {
const result = execute("DELETE FROM students WHERE id = ?", [id]);
return result.changes > 0;
}
}
@@ -0,0 +1,56 @@
// Auto-generated User service
import { queryAll, queryOne, execute } from "../db/client.js";
import type { User, CreateUserInput, UpdateUserInput } from "../types/index.js";
export class UserService {
/** List all users */
list(): User[] {
return queryAll<User>("SELECT * FROM users ORDER BY created_at DESC");
}
/** Get by ID */
getById(id: string): User | undefined {
return queryOne<User>("SELECT * FROM users WHERE id = ?", [id]);
}
/** Create */
create(input: CreateUserInput): User {
const id = crypto.randomUUID();
const now = new Date().toISOString();
const hasCreatedAt = true;
const hasUpdatedAt = true;
const cols = ["id", "phone", "nickname", "avatar_url", "created_at", "updated_at"];
const placeholders = cols.map(() => "?").join(", ");
const values = [id, input.phone ?? null, input.nickname ?? null, input.avatarUrl ?? null, now, now];
execute(`INSERT INTO users (${cols.join(", ")}) VALUES (${placeholders})`, values);
return this.getById(id)!;
}
/** Update */
update(id: string, input: UpdateUserInput): User | undefined {
const existing = this.getById(id);
if (!existing) return undefined;
const sets: string[] = [];
const values: unknown[] = [];
if (input.phone !== undefined) { sets.push("phone = ?"); values.push(input.phone); }
if (input.nickname !== undefined) { sets.push("nickname = ?"); values.push(input.nickname); }
if (input.avatarUrl !== undefined) { sets.push("avatar_url = ?"); values.push(input.avatarUrl); }
if (sets.length === 0) return existing;
sets.push("updated_at = ?");
values.push(new Date().toISOString());
values.push(id);
execute(`UPDATE users SET ${sets.join(", ")} WHERE id = ?`, values);
return this.getById(id)!;
}
/** Delete */
delete(id: string): boolean {
const result = execute("DELETE FROM users WHERE id = ?", [id]);
return result.changes > 0;
}
}
@@ -0,0 +1,56 @@
// Auto-generated UserProgress service
import { queryAll, queryOne, execute } from "../db/client.js";
import type { UserProgress, CreateUserProgressInput, UpdateUserProgressInput } from "../types/index.js";
export class UserProgressService {
/** List all user_progress */
list(): UserProgress[] {
return queryAll<UserProgress>("SELECT * FROM user_progress ORDER BY created_at DESC");
}
/** Get by ID */
getById(id: string): UserProgress | undefined {
return queryOne<UserProgress>("SELECT * FROM user_progress WHERE id = ?", [id]);
}
/** Create */
create(input: CreateUserProgressInput): UserProgress {
const id = crypto.randomUUID();
const now = new Date().toISOString();
const hasCreatedAt = false;
const hasUpdatedAt = false;
const cols = ["id", "user_id", "lesson_id", "completed", "watched_sec"];
const placeholders = cols.map(() => "?").join(", ");
const values = [id, input.userId ?? null, input.lessonId ?? null, input.completed ?? null, input.watchedSec ?? null];
execute(`INSERT INTO user_progress (${cols.join(", ")}) VALUES (${placeholders})`, values);
return this.getById(id)!;
}
/** Update */
update(id: string, input: UpdateUserProgressInput): UserProgress | undefined {
const existing = this.getById(id);
if (!existing) return undefined;
const sets: string[] = [];
const values: unknown[] = [];
if (input.userId !== undefined) { sets.push("user_id = ?"); values.push(input.userId); }
if (input.lessonId !== undefined) { sets.push("lesson_id = ?"); values.push(input.lessonId); }
if (input.completed !== undefined) { sets.push("completed = ?"); values.push(input.completed); }
if (input.watchedSec !== undefined) { sets.push("watched_sec = ?"); values.push(input.watchedSec); }
if (sets.length === 0) return existing;
values.push(id);
execute(`UPDATE user_progress SET ${sets.join(", ")} WHERE id = ?`, values);
return this.getById(id)!;
}
/** Delete */
delete(id: string): boolean {
const result = execute("DELETE FROM user_progress WHERE id = ?", [id]);
return result.changes > 0;
}
}
+8
View File
@@ -0,0 +1,8 @@
// Augment Fastify request with JWT user
import type { JwtPayload } from "./index.js";
declare module "fastify" {
interface FastifyRequest {
user?: JwtPayload;
}
}
@@ -0,0 +1,185 @@
// Auto-generated types (from Model Contract)
export interface User {
id?: string;
username: string;
passwordHash: string;
nickname?: string;
role?: string;
phone?: string;
avatarUrl?: string;
createdAt?: string;
updatedAt?: string;
}
export interface Courses {
id: string;
userId?: string;
title: string;
description?: string;
instructor?: string;
price?: number;
coverUrl?: string;
category?: string;
createdAt?: string;
updatedAt?: string;
}
export interface Chapters {
id: string;
userId?: string;
courseId?: string;
title: string;
sortOrder?: number;
durationMin?: number;
createdAt?: string;
updatedAt?: string;
}
export interface Students {
id: string;
userId?: string;
name: string;
email?: string;
enrolledAt?: string;
progress?: number;
createdAt?: string;
updatedAt?: string;
}
export interface Assignments {
id: string;
userId?: string;
courseId?: string;
title: string;
description?: string;
dueDate?: string;
maxScore?: number;
createdAt?: string;
updatedAt?: string;
}
export interface CreateUserInput {
username: string;
passwordHash: string;
nickname?: string;
role?: string;
phone?: string;
avatarUrl?: string;
}
export interface CreateCoursesInput {
userId?: string;
title: string;
description?: string;
instructor?: string;
price?: number;
coverUrl?: string;
category?: string;
}
export interface CreateChaptersInput {
userId?: string;
courseId?: string;
title: string;
durationMin?: number;
}
export interface CreateStudentsInput {
userId?: string;
name: string;
email?: string;
}
export interface CreateAssignmentsInput {
userId?: string;
courseId?: string;
title: string;
description?: string;
dueDate?: string;
}
export interface UpdateUserInput {
username?: string;
passwordHash?: string;
nickname?: string;
role?: string;
phone?: string;
avatarUrl?: string;
}
export interface UpdateCoursesInput {
userId?: string;
title?: string;
description?: string;
instructor?: string;
price?: number;
coverUrl?: string;
category?: string;
}
export interface UpdateChaptersInput {
userId?: string;
courseId?: string;
title?: string;
durationMin?: number;
}
export interface UpdateStudentsInput {
userId?: string;
name?: string;
email?: string;
}
export interface UpdateAssignmentsInput {
userId?: string;
courseId?: string;
title?: string;
description?: string;
dueDate?: string;
}
// ─── Auth ───────────────────────────────────────────
export interface LoginInput {
username: string;
password: string;
}
export interface RegisterInput {
username: string;
password: string;
nickname?: string;
}
export interface AuthResponse {
token: string;
user: User;
}
// ─── API ────────────────────────────────────────────
export interface ApiResponse<T> {
data: T;
message?: string;
}
export interface PaginatedResponse<T> {
data: T[];
total: number;
page: number;
pageSize: number;
}
export interface ErrorResponse {
error: string;
message: string;
statusCode: number;
}
// ─── JWT ────────────────────────────────────────────
export interface JwtPayload {
userId: string;
username: string;
role: string;
iat?: number;
exp?: number;
}
+27
View File
@@ -0,0 +1,27 @@
// Type declarations for sql.js (no native types package available)
declare module "sql.js" {
export interface Database {
run(sql: string, params?: BindParams): void;
exec(sql: string): void;
prepare(sql: string): Statement;
export(): Uint8Array;
close(): void;
getRowsModified(): number;
}
export interface Statement {
bind(params?: BindParams): boolean;
step(): boolean;
getAsObject<T = Record<string, unknown>>(): T;
getColumnNames(): string[];
free(): boolean;
}
export type BindParams = unknown[] | Record<string, unknown>;
export interface SqlJsStatic {
Database: new (data?: ArrayLike<number>) => Database;
}
export default function initSqlJs(config?: Record<string, unknown>): Promise<SqlJsStatic>;
}
+27
View File
@@ -0,0 +1,27 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": [
"ES2022"
],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"sourceMap": true
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist",
"src/__tests__"
]
}