Transloadify (Deprecated)
The transloadify CLI is deprecated. The active CLI now lives in
@transloadit/node.
Warning
transloadify is deprecated. Use the @transloadit/node CLI instead.
Use this instead:
npx -y @transloadit/node --help
Note
The npm package name transloadit is kept as an alias for backward compatibility, but
@transloadit/node is the canonical package name.
Migration guide
Most commands map directly from:
transloadify ...
To:
transloadit ...
Examples:
# Before
transloadify --template TEMPLATE_ID < input.jpg > output.jpg
# After
npx -y @transloadit/node assemblies create --template TEMPLATE_ID --input input.jpg --output output.jpg
# Before
transloadify templates list
# After
npx -y @transloadit/node templates list
# Before
transloadify assemblies list --after 2016-11-08
# After
npx -y @transloadit/node assemblies list --after 2016-11-08
For complete command reference and examples, see the Node.js SDK docs.