# Transloadify (Deprecated)

[transloadit/node-sdk](https://github.com/transloadit/node-sdk/tree/main/packages/node)

The `transloadify` CLI is deprecated. The active CLI now lives in[@transloadit/node](/docs/sdks/node-sdk.md).

###### Warning

`transloadify` is deprecated. Use the `@transloadit/node` CLI instead.

Use this instead:

![](/_next/static/media/copy.04p1cju9qekk_.svg?dpl=dpl_CtwzFbHWtqiCy9uvWb9fE7WvfP9N)

```bash
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:

![](/_next/static/media/copy.04p1cju9qekk_.svg?dpl=dpl_CtwzFbHWtqiCy9uvWb9fE7WvfP9N)

```bash
# 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

```

![](/_next/static/media/copy.04p1cju9qekk_.svg?dpl=dpl_CtwzFbHWtqiCy9uvWb9fE7WvfP9N)

```bash
# Before
transloadify templates list

# After
npx -y @transloadit/node templates list

```

![](/_next/static/media/copy.04p1cju9qekk_.svg?dpl=dpl_CtwzFbHWtqiCy9uvWb9fE7WvfP9N)

```bash
# 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](/docs/sdks/node-sdk.md).
