issues Search Results · language:Dune language:JavaScript language:HTML language:Java language:JavaScript
Filter by
39.8M results
📚 Before you write any code today, read these:
- TypeORM Docs — Repository API — find, findOneBy, save, update, delete
- NestJS + TypeORM guide — GeeksforGeeks
day-6
📋 Submit your checkpoint for today
Answer each question in a comment on this issue, then close it.
1. What I completed today:
2. What I now understand that I did not this morning:
3. Where I got stuck ...
day-5
🛠 Wire up the database
- [ ] Install: npm install @nestjs/typeorm typeorm pg
- [ ] Create backend/src/tasks/task.entity.ts with @Entity, @PrimaryGeneratedColumn( uuid ), @Column,
@CreateDateColumn, ...
day-5
🛠 Validate incoming requests
- [ ] Install: npm install class-validator class-transformer @nestjs/mapped-types
- [ ] Create backend/src/tasks/dto/create-task.dto.ts with @IsString, @IsNotEmpty, @MaxLength(255), ...
day-5
📚 Before you write any code today, read these:
- NestJS Docs — Validation Pipes
- TypeORM Docs — Entities — read Entity and Column sections
- NestJS Docs — Database (TypeORM)
day-5
📋 Submit your checkpoint for today
Answer each question in a comment on this issue, then close it.
1. What I completed today:
2. What I now understand that I did not this morning:
3. Where I got stuck ...
day-4
🛠 Wire the HTTP layer and verify
- [ ] Add @Controller( tasks ) and inject TasksService in constructor
- [ ] Implement: GET /tasks, GET /tasks/:id, POST /tasks (201), PATCH /tasks/:id, DELETE /tasks/:id ...
day-4
🛠 Build the service
- [ ] Add private tasks: Task[] = [] to TasksService
- [ ] Implement findAll() — returns the array
- [ ] Implement findOne(id) — throws NotFoundException if not found
- [ ] ...
day-4
🛠 Scaffold the tasks module
Run from inside backend/:
nest generate module tasks
nest generate controller tasks
nest generate service tasks
- [ ] TasksModule appears in app.module.ts imports array ...
day-4
📚 Before you write any code today, read these:
- NestJS Docs — Controllers
- NestJS Docs — Providers (Services)
- freeCodeCamp — NestJS for Beginners (first 60 min)
- HTTP Status Codes — MDN — ...
day-4

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip! Restrict your search to the title by using the in:title qualifier.