syumai
syumai
@danbulant I'll check this later, thanks!
@Jules2010 I created plugin to inject custom language compilers. I confirmed that this is working with Pug / TypeScript / Stylus in basic usage. (However, since I am not familiar...
Sorry for the delay in replying. I'll check this later. :pray:
Sorry for the delay in replying. I'll check this later. :pray:
@Airyzz Thank you for feedback. And I'm sorry about very late response. I've created 2 examples. * go-date-example - https://github.com/syumai/workers-playground/tree/main/go-date-example * tinygo-date-example - https://github.com/syumai/workers-playground/tree/main/tinygo-date-example Each example outputs result of `time.Now()`....
Alternatively, you can use the `Date` class directly. **Example code** https://github.com/syumai/workers-playground/blob/0828c616610cadff6c09b4d4be534fe56e4500b6/tinygo-date-example/main.go#L15-L19 **result** ``` $ curl http://localhost:8787/now 2078-01-01 15:25:45.472 +0900 UTC+9 m=+3408243945.472000001 # broken $ curl http://localhost:8787/date 2024-01-01T15:14:10.439Z # not broken...
According to this issue, in local worker development, `performance.now()` behaves the same as `Date.now()`. Originally, `performance.now()` is supposed to return the time elapsed since the start of the script execution,...
This seems to be an issue with Wrangler and the workerd, but I'll leave this issue open for now as it may be helpful to the users of syumai/workers. Thanks...
I'll check this later, thanks!
@AdjectiveAllison In the upcoming release of TinyGo (v0.28), which is expected to be released soon, many features of the reflect package are expected to be supported. It appears that a...