Can I use require and import in the same Node.js code step?

Dylan Sather (Pipedream) : you should not if you clear /tmp after each run, that’s correct

Dylan Sather (Pipedream) : to further protect against unintended clobbering, you can serialize the execution of your workflow with concurrency and throttling controls

Raymond Camden : thats slick - ive never really paid attention to the stuff below Timeout

Dylan Sather (Pipedream) : yeah these controls are super useful

Giao Phan : We use the ‘tmp-promise’ package here to make sure the files get disposed of.

Dylan Sather (Pipedream) : ah yeah I forgot about that, will document that