Junior — Middle
Can you tell about your projects implemented using Node.js?
sobes.tech AI
Answer from AI
In one of my projects with Node.js, I developed a REST API for task management in a scheduling system. I used Express.js for routing, MongoDB for data storage, and JWT for user authentication.
Example of a simple route in Express.js:
const express = require('express');
const app = express();
app.use(express.json());
app.post('/tasks', (req, res) => {
const task = req.body;
// Logic to save the task to the database
res.status(201).send({ message: 'Task created', task });
});
app.listen(3000, () => console.log('Server running on port 3000'));
This project helped me understand working with asynchronous code, error handling, and database interaction.