Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Add server API #2093

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions graphite-demo/server.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
const express = require('express');
const app = express();
const port = 3000;

// Fake data for tasks
const tasks = [
{
id: 1,
description: 'Complete monthly financial report'
},
{
id: 2,
description: 'Plan team building activity'
},
{
id: 3,
description: 'Update project documentation'
}
];

app.get('/search', (req, res) => {
// Retrieve the query parameter
const query = req.query.query?.toLowerCase() || '';

// Filter tasks based on the query
const filteredTasks = tasks.filter(task => task.description.toLowerCase().includes(query));

res.json(filteredTasks);
});

app.listen(port, () => {
console.log(`Server running on port ${port}`);
});
Loading