Marak
Marak
Is problem only with long names? Is problem with random hook creation? Is problem with creating from SDK client?
Will make sure to review `/new` for next deployment. I will clear out your test account as well. Thank you.
That's interesting. Why are you attempting to require `babel-polyfill`? Why not just use select `ES7` as your hook language and write using ES7 notation instead of having to run babel...
Hrmm. I'm thinking that this `regeneratorRuntime` variable pollutes the global scope, and our Node `vm` instance is unable to see it. It might be possible to resolve by adding a...
Here you can see how we are supporting `ES7`: https://github.com/bigcompany/hook.io/blob/master/bin/run-hook#L74
In the code I linked you'll see a TODO saying its currently doing the transpile on every request. We could optimize that. You are the first person to bring it...
I don't like the idea of polluting every single javascript service with `babel`, when in the majority of the use-cases it won't be used. The main problem is this babel...
Related #142 - Add compile step > transpiling the same code over and over for every request feels like a waste of resources isnt it? Yes. This wasn't an active...
@zanona - Let me ask you. Is the current response time for `ES7` hooks causing you any real production issues? I understand that they might not be super fast, but...