Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

express-elastic-transcoder

pwmckenna3MIT1.0.0

Express app that shows aws elastic transcoder jobs by status

readme

express-elastic-transcoder

an express app that will expose aws elastic transcoder jobs (for a specified pipeline), which you can navigate by status. Not much to look at, but certainly easier to just mount this than to try to navigate the aws console. Mount it on your existing express app (preferably behind some sort of authentication).

Usage:

app.use('/transcoder', require('express-elastic-transcoder')({
    accessKeyId: process.env.AWS_ACCESS_KEY,
    secretAccessKey: process.env.AWS_SECRET_ACCESS
    region: process.env.AWS_REGION
}, process.env.AWS_TRANSCODE_PIPELINE_ID));