Dane Grant

Results 8 comments of Dane Grant

I ran into a couple challenges getting a pages setup going. First big thing is that you need to create a worker for the Durable Object and run it in...

:+1: This would have been so perfect for my current requirement :)

Is there any reason to not just do something like this? ```html (function () { window.counterscale = { q: [["set", "siteId", "your-unique-site-id"], ["trackPageview"]], }; var cs = document.createElement('script'); cs.id =...

@SeanCassiere I updated the reproduction with a simple helloWorld static server function in the index route of the `start-basic` example from the latest release. Updating the description the to include...

@alexborisov did you try `return await callApi()` As someone else suggested in my case my operation was async and I wasn't returning the promise. Seems like that would even be...

@jaredpalmer I believe it would be worth mentioning. I think in a previous version it worked fine with me handling the submit state manually in my async callback but it...

I've never written a VSCode extension before but I did see in the source code that it looks like Node is pulled through a VSCode specific API that I couldn't...

> as a workaround for linux i ran: which node // or mise which node ln -s (the path from the previous command) /usr/bin/node As a workaround for MacOS you...