-
I installed the code and ran it but it is showing the error that `forEach` is called on undefined.
The clients array is being empty all the time.
```json
{
"url": "/api/sendmessage",
…
-
For disambiguity, what I'm referring to herein is WHATWG `ReadableStream` https://streams.spec.whatwg.org/#rs-class, not Node.js-specific `Readable`
When you do this
```
console.log(ReadableS…
-
Version 3.0.0-beta.9
I'm trying to patch the global object in typescript
```ts
import fetch from "node-fetch"
if (!globalThis.fetch) {
globalThis.fetch = fetch
}
```
And I get this err…
-
Currently we do like `standard` and use `globals.node` for everything:
https://github.com/neostandard/neostandard/blob/3f65825582520709ac2900d17049340b5d9256a2/lib/configs/base.js#L16
But we sho…
-
### Which Cloudflare product(s) does this pertain to?
Workers Runtime
### What version(s) of the tool(s) are you using?
3.68.0
### What version of Node are you using?
v18.15.0
### Wh…
-
### Before opening, please confirm:
- [X] I have [searched for duplicate or closed issues](https://github.com/aws-amplify/amplify-js/issues?q=is%3Aissue+) and [discussions](https://github.com/aws…
-
Hello,
i cant find a way to get prisma working with nuxt.
There is always bunch of errors - even in minimalistic setup.
I tried bun, yarn, pnpm - nothing works. Not in Stackblitz and not local.
It…
Ed1ks updated
4 weeks ago
-
### Describe the bug
```typescript
// input.ts
'use client';
export function ClientComponent() {
return 'Hello world';
}
```
```bash
> swc input.ts -o output.js -C module.type=umd
…
-
One of the (many) things that the CoreJS polyfills provide is a `globalThis` polyfill, which is needed on legacy Edge. However, the current polyfill test for loading CoreJS is the [`'noModule' in HTML…
-
支付宝小程序IDE环境目前globalThis为undefined,真机环境下是存在的,下面是个兼容的解决方法:
```js
if (typeof globalThis !== 'object') {
Object.defineProperty(Object.prototype, 'globalThis', {
get() {
return this
}…