how to send html file with express
res.sendFile(path.join(__dirname + '/index.html'));
how to send html file with express
res.sendFile(path.join(__dirname + '/index.html'));
upload files to express using express-fileupload
const fileUpload = require('express-fileupload');
app.post('/upload', fileUpload, (req, res) => {
//Now you can use req.files.file to access the file input with name="file"
user.avatar = {data: req.files.file.data, contentType: req.files.file.mimetype};
//Now perform user.save
})
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us