Skip to content

Instantly share code, notes, and snippets.

app.get(function(req, res) => {
post.findById(req.params.postId) {
res.json(post);
}
});
app.get( "/posts/:postId", ( req: any, res ) => {
post.findById(req.params.postId) {
res.json(post);
}