1.4.5-lts.11 • Published 1 year ago

multer-utf8 v1.4.5-lts.11

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

multer-utf8 NPM version js-standard-style

multer-utf8 is a solution for latin1 charset issue.

busboy reads files with latin1 charset by default, which causes some problems with utf8 encoded files.

I fixed it by changing this part of code.

try {
  busboy = Busboy({ headers: req.headers, limits: limits, ßpreservePath: preservePath, defParamCharset: charset })
} catch (err) {
  return next(err)
}

Options

KeyDescription
dest or storageWhere to store the files
fileFilterFunction to control which files are accepted
limitsLimits of the uploaded data
preservePathKeep the full path of files instead of just the base name
charsetcharset of files. for example latin1, utf8

Support latin1

/**
* mutler for utf8 
* default charset is `utf8`
*/ 

const multerWithUTF8 = multer({
  ...mutlerOptions
})

// multer for latin1
const multer = multer({
  ...multerOptions
  charset: 'latin1'
});