mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-08-28 05:25:33 +00:00
add server api
This commit is contained in:
parent
116583481c
commit
cf5fd1d6c9
1 changed files with 36 additions and 0 deletions
36
graphite-demo/server.js
Normal file
36
graphite-demo/server.js
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
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));
|
||||
|
||||
// Sort the filtered tasks alphabetically by description
|
||||
const sortedTasks = filteredTasks.sort((a, b) => a.description.localeCompare(b.description));
|
||||
|
||||
res.json(sortedTasks);
|
||||
});
|
||||
|
||||
app.listen(port, () => {
|
||||
console.log(`Server running on port ${port}`);
|
||||
});
|
||||
Loading…
Add table
Reference in a new issue