Using prefect, is it possible to implement tasks ...
# ask-community
h
Using prefect, is it possible to implement tasks in different programming languages, we already have our business login in Nodejs and I couldn't find any docs related to this
j
Hi Hari Yes, but only indirectly AFAIK. You can call any external process/command (any language) from any Prefect task (Python), or use the built-in ShellTask.
👍 1
k
Hey Hari, John is exactly right you would need to use the ShellTask but that gives observability around the whole script as you can’t make more granular tasks
259 Views