What is the JS version?

Hello.
Suggestion above

async function main() {
    await <something>;
}

main();

is not correct. You should explicitly wait for all promises in your script code, otherwise you will get “non-completed promises” exception indeed.

We use node 12 as mentioned above. Nodejs upgrade is not a priority for now, but we will do it at some point in time.

If you want to develop your script outside of Fibery UI, you are free to do this. Just notice that your code is run in sandboxed environment and there can be some differences and limitations in comparison to usual nodejs.
I can’t recommend any particular approach to write code outside fibery UI.

1 Like