惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
B
Blog
Stack Overflow Blog
Stack Overflow Blog
量子位
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
MongoDB | Blog
MongoDB | Blog
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
腾讯CDC
D
DataBreaches.Net
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers Blog
M
MIT News - Artificial intelligence
P
Proofpoint News Feed
罗磊的独立博客
L
LangChain Blog
V
Visual Studio Blog
雷峰网
雷峰网
aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How to make a CRUD in Bushjs for TODO App (APIs Only)
Saad Majeed · 2026-05-02 · via DEV Community

 Bushjs is a nodejs framework built on the top of express and mongodb. To make a CRUD, lets follow the following:

First of all, we will install bushjs-cli, a CLI command tool for BUSHJS framework.

npm install -g bushjs-cli

Enter fullscreen mode Exit fullscreen mode

After installing this CLI, you can use this command to make a new project

bush new bushapp

Enter fullscreen mode Exit fullscreen mode

You can use your own project name instead of bushapp.

You can also create a new project without installing CLI tool using

npx bush new bushapp

Enter fullscreen mode Exit fullscreen mode

Using this command will include all project files in bushapp. We will go into bushapp dir/folder and install all required packages

cd bushapp
npm install

Enter fullscreen mode Exit fullscreen mode

To understand project directory flow, you can use this directory structure help guide

After installing required packages, you can run your project using this command

npm run dev

Enter fullscreen mode Exit fullscreen mode

We will need to define database schema for storing tasks. Bushjs has CLI command for that

node bush make:schema tasks

Enter fullscreen mode Exit fullscreen mode

This command will create a new schema file at database/schemas/20260502013812_tasks.ts

This schema file comes with this schema code by default.

import { BaseSchema } from 'bushjs';

export default class TasksSchema extends BaseSchema {
  async up(): Promise<void> {
    await this.createCollection('tasks', (schema) => {
      schema.id();
      schema.string('name', 255, true);
      schema.timestamps();
    });
  }

  async down(): Promise<void> {
    await this.dropCollection('tasks');
  }
}

Enter fullscreen mode Exit fullscreen mode

This schema import BaseSchema from bushjs that is later extended by TasksSchema class. This class has two methods up() and down(). up() is responsible for making schema structure in database while down() drops the database schema, means removes this schema from database.
Now we will update this tasks schema with this:
schema.string('description', 255, false);
schema.boolean('completed', false);

We will have the final schema file like this

import { BaseSchema } from 'bushjs';

export default class TasksSchema extends BaseSchema {
  async up(): Promise<void> {
    await this.createCollection('tasks', (schema) => {
      schema.id();
      schema.string('name', 255, true);
      schema.string('description', 255, false);
      schema.boolean('completed', false);
      schema.timestamps();
    });
  }

  async down(): Promise<void> {
    await this.dropCollection('tasks');
  }
}

Enter fullscreen mode Exit fullscreen mode

Now, let's make a new Model using this command:

node bush make:model Task

Enter fullscreen mode Exit fullscreen mode

This command will create a new file here
app/Models/Task.ts

This Task.ts file contains this code by default

import { Model } from 'bushjs';

export class Task extends Model {
  static collection = 'tasks';
  static fields = ['Task', {
    // Define your fields here
    // name: { type: 'string', required: true },
  }];
}

Enter fullscreen mode Exit fullscreen mode

Now let's update this model according to schema like

import { Model } from 'bushjs';

export class Task extends Model {
  static collection = 'tasks';
  static fields = ['Task', {
    name: { type: 'string', required: true },
    description: { type: 'string', required: false },
    completed: { type: 'boolean', required: false },
  }];
}

Enter fullscreen mode Exit fullscreen mode

Now, our database side is completed. Let's define logic for API endpoint handling, the Controller

node bush make:controller TaskController

Enter fullscreen mode Exit fullscreen mode

This will create a new file for controller here
app/Http/Controllers/TaskController.ts

This is the controller by default file code:

import { Controller, Request, Response } from 'bushjs';

export class TaskController extends Controller {
  async index(request: Request, response: Response) {
    // TODO: Implement your logic here
    response.send('Welcome');
  }
}

Enter fullscreen mode Exit fullscreen mode

Now let's update index function to show all the tasks.

import { Task } from '@app/Models/Task';
import { Controller, Request, Response } from 'bushjs';

export class TaskController extends Controller {
  async index(request: Request, response: Response) {
    const tasks = await Task.all();
    return response.json(tasks);
  }
}

Enter fullscreen mode Exit fullscreen mode

Here we have imported Task Model. @ is used as a namespace like @app, @routes.

This model Task that is extended by Model class owns built-in functions of Model class. So, all() function after class is accessible as static function to retrieve all the records from database.

Now, index function is completed for defining the endpoint that we will define in routes/api.ts.

import { TaskController } from '@app/Http/Controllers/TaskController';
import { Application } from 'bushjs';

export function registerRoutes(app: Application): void {
  const Route = app.router;
  Route.get('/tasks', [TaskController, 'index']);

}

Enter fullscreen mode Exit fullscreen mode

Here, we imported that TaskController class from TaskController file that we used in get() method for /tasks endpoint. Also, here app has get() and post() methods for quick usage for restful APIs. To access all the methods of Restful APIs, you have to use app.router that we used here in Route variable.

Now, Route variable has all built-in methods for Restful APIs.

Finally, we have made our first API endpoint for getting all tasks at /tasks

Now, we will define all other endpoints. For saving new record or updating existing record, we need to define some rules for request in order to match request body data according to our database schema.

For making a new Request class, let's use this command:

node bush make:request Task

Enter fullscreen mode Exit fullscreen mode

This will create a TaskRequest class at app/Http/Requests/TaskRequest.ts

The TaskRequest file with defined rules(), messages() and authorize() methods.

import { FormRequest, Request } from 'bushjs';

export class TaskRequest extends FormRequest {
  protected rules(): Record<string, string[]> {
    return {
      name: ['required', 'string', 'min:2'],
      description: ['string', 'max:255'],
      completed: ['boolean'],
    };
  }

  protected messages(): Record<string, string> {
    return {
      'name.required': 'Name is required',
      'name.string': 'Name must be a string',
      'name.min': 'Name must be at least 2 characters',
      'description.string': 'Description must be a string',
      'description.max': 'Description must not exceed 255 characters',
      'completed.boolean': 'Completed must be a boolean value',
    };
  }

  async authorize(request: Request): Promise<boolean> {
    // TODO: Implement authorization logic
    return true;
  }
}

Enter fullscreen mode Exit fullscreen mode

Our final TaskController for Restful APIs will be like

import { Task } from '@app/Models/Task';
import { Controller, Request, Response } from 'bushjs';
import { TaskRequest } from '../Requests/TaskRequest';

export class TaskController extends Controller {
  async index(request: Request, response: Response) {
    const tasks = await Task.all();
    return response.json(tasks);
  }

  async store(request: Request, response: Response) {
    const taskRequest = new TaskRequest();
    await taskRequest.validateRequest(request);
    const { name, description, completed } = request.body;
    const task = await Task.create({ name, description, completed });
    return response.json({ task, message: 'Task created successfully' });
  }

  async show(request: Request, response: Response) {
    const { id } = request.params;
    const task = await Task.find(id);
    if (!task) {
      return response.status(404).json({ message: 'Task not found' });
    }
    return response.json(task);
  }

  async update(request: Request, response: Response) {
    const taskRequest = new TaskRequest();
    await taskRequest.validateRequest(request);

    const { id } = request.params;
    const { name, description, completed } = request.body;
    const task = await Task.update(id, { name, description, completed });
    if (!task) {
      return response.status(404).json({ message: 'Task not found' });
    }
    return response.json({task, message: 'Task updated successfully' });
  }

  async destroy(request: Request, response: Response) {
    const { id } = request.params;
    const task = await Task.delete(id);
    if (!task) {
      return response.status(404).json({ message: 'Task not found' });
    }
    return response.json({ message: 'Task deleted successfully' });
  }
}

Enter fullscreen mode Exit fullscreen mode

And routes/api.ts will be like

import { TaskController } from '@app/Http/Controllers/TaskController';
import { Application } from 'bushjs';

export function registerRoutes(app: Application): void {
  const Route = app.router;
  Route.get('/tasks', [TaskController, 'index']);
  Route.post('/tasks', [TaskController, 'store']);
  Route.get('/tasks/:id', [TaskController, 'show']);
  Route.put('/tasks/:id', [TaskController, 'update']);
  Route.delete('/tasks/:id', [TaskController, 'destroy']);
}

Enter fullscreen mode Exit fullscreen mode

If you use functions names like index, store, show, update and destroy then you can define routes with a single apiResource() methods and it will do all the rest things for you.

import { TaskController } from '@app/Http/Controllers/TaskController';
import { Application } from 'bushjs';

export function registerRoutes(app: Application): void {
  const Route = app.router;
  Route.apiResource('tasks', TaskController);
}

Enter fullscreen mode Exit fullscreen mode