Node.js Typing Practice
Type the code below as fast and accurately as you can
Difficulty:
0
WPM
100%
Accuracy
0
Errors
60s
Timer
Node.jsMedium
app.post("/api/users", async (req, res) => {
try {
const { name, email } = req.body;
const user = await User.create({ name, email });
res.status(201).json(user);
} catch (err) {
res.status(400).json({ error: err.message });
}
});
Start typing to begin