Package

io.scalajs.npm.express

multer

Permalink

package multer

multer package object

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. multer
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait DiskStorage extends Object

    Permalink

    Disk Storage

    Disk Storage

    Annotations
    @RawJSType() @native()
  2. class DiskStorageOptions extends Object

    Permalink

    Disk Storage Options

    Disk Storage Options

    Annotations
    @RawJSType() @ScalaJSDefined()
  3. trait MemoryStorage extends Object

    Permalink

    Memory Storage

    Memory Storage

    Annotations
    @RawJSType() @native()
  4. class MemoryStorageOptions extends Object

    Permalink

    Memory Storage Options

    Memory Storage Options

    Annotations
    @RawJSType() @ScalaJSDefined()
  5. trait Multer extends Object

    Permalink

    Multer is a node.js middleware for handling multipart/form-data.

    Multer is a node.js middleware for handling multipart/form-data.

    Annotations
    @RawJSType() @native()
    Version

    1.1.0

    See also

    https://github.com/expressjs/multer

  6. implicit final class MulterExtensions extends AnyVal

    Permalink

    Multer Extensions

  7. class MulterField extends Object

    Permalink

    Multer Field

    Multer Field

    Annotations
    @RawJSType() @ScalaJSDefined()
  8. trait MulterFile extends Object

    Permalink

    A multer file object is a JSON object with the following properties.

    A multer file object is a JSON object with the following properties.

    Annotations
    @RawJSType() @native()
  9. trait MulterInstance extends Object

    Permalink

    Multer Instance

    Multer Instance

    Annotations
    @RawJSType() @native()
  10. class MulterLimits extends Object

    Permalink

    An object specifying the size limits of the following optional properties.

    An object specifying the size limits of the following optional properties. This object is passed to busboy directly, and the details of properties can be found on busboy's page.

    Annotations
    @RawJSType() @ScalaJSDefined()
  11. class MulterOptions extends Object

    Permalink

    Multer accepts an options object, the most basic of which is the dest property, which tells Multer where to upload the files.

    Multer accepts an options object, the most basic of which is the dest property, which tells Multer where to upload the files. In case you omit the options object, the file will be renamed and uploaded to the temporary directory of the system. If the inMemory option is true, no data is written to disk but data is kept in a buffer accessible in the file object.

    By the default, Multer will rename the files so as to avoid name conflicts. The renaming function can be customized according to your needs.

    The following are the options that can be passed to Multer.

    Annotations
    @RawJSType() @ScalaJSDefined()
  12. trait MulterRequest extends ClientRequest with Request

    Permalink

    Multer Request Augmentation

    Multer Request Augmentation

    Annotations
    @RawJSType() @native()

Value Members

  1. object Multer extends Object with Multer

    Permalink

    Multer Singleton

    Multer Singleton

    Annotations
    @native() @JSImport( "multer" , JSImport.Namespace )
  2. object MulterField

    Permalink

    Multer Field Companion

  3. object MulterLimits

    Permalink

    Multer Limits Companion

Inherited from AnyRef

Inherited from Any

Ungrouped