Skip to content

Instantly share code, notes, and snippets.

@Abdullamhd
Created September 30, 2019 10:21
Show Gist options
  • Save Abdullamhd/1dcd74628d10560be89af6b572c4ced8 to your computer and use it in GitHub Desktop.
Save Abdullamhd/1dcd74628d10560be89af6b572c4ced8 to your computer and use it in GitHub Desktop.
upload file into node js express
app.post('/', async (req,res)=>{
try {
const result = await app.dbUtil.db.collection('users').insertOne(req.body)
res.json(result)
} catch(error){
res.json(error)
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment