Skip to content
This repository has been archived by the owner on Jul 9, 2018. It is now read-only.
/ asset-express Public archive

Provides integration between the travetto asset and express module.

Notifications You must be signed in to change notification settings

travetto/asset-express

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

travetto: Asset-Express

Asset Express, provides a clean and direct mechanism for handling uploads via the express framework, as well as some best practices with respect to temporary file deletion.

Once the files are uploaded, they are exposed on express's request object as req.files. The uploaded files are constructed as Asset instances, which allows for easy interoperability with the Asset module for storage.

@Controller('/avatar')
class Controller {

  constructor(assetService: AssetService, imageService: ImageService) {}

  @AssetUpload()
  @Post('/')
  async setAvatar(req:Request, res:Response) {
    const stored = await this.assetService.store(req.files[0]);
    return {
      path: stored.path
    };
  }

  @Get('/:path')
  async getAvatar(req:Request) {
    return await this.imageService.get(req.params.path, {w: req.query.w, h: req.query.h});
  }
}

About

Provides integration between the travetto asset and express module.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published