Tsubasa
Tsubasa
DDeno
Created by Tsubasa on 3/25/2025 in #help
Issues with libuv and zeromq support in Deno?
I was creating a deno proxy server to communicate with my python microservices which extensively use zeromq to communicate with each other, But on Deno I cannot set up zeromq no matter what, this is the error I get with using npm:zeromq package.
deno: symbol lookup error: /home/user/projects/data-proxy/node_modules/.deno/zeromq@6.3.0/node_modules/zeromq/build/linux/x64/node/115/addon.node: undefined symbol: uv_unref
deno: symbol lookup error: /home/user/projects/data-proxy/node_modules/.deno/zeromq@6.3.0/node_modules/zeromq/build/linux/x64/node/115/addon.node: undefined symbol: uv_unref
I even tried using these bindings made for Deno https://deno.land/x/zeromq@0.0.1 it is unmaintained but i was just testing, and it resulted in following error
error: Uncaught (in promise) TypeError: Class extends value undefined is not a constructor or null
export class StringReader extends Deno.Buffer {
^
at https://deno.land/std@0.84.0/io/readers.ts:9:40
error: Uncaught (in promise) TypeError: Class extends value undefined is not a constructor or null
export class StringReader extends Deno.Buffer {
^
at https://deno.land/std@0.84.0/io/readers.ts:9:40
Is it zeromq library error or is support for libuv or some zeromq package not there in deno yet?
2 replies
DDeno
Created by Tsubasa on 3/24/2025 in #help
JSX config not working properly, I keep getting children props error in all my components
Property 'children' is missing in type '{ in: true; timeout: number; }' but required in type 'FadeProps'.deno-ts(2741) I have similar project with same configs with npm and node and it works fine, but I can't seem to make it work with deno. Here's my deno.json and tsconfig.json (I also tried adding same configs in tsconfig.node.json and tsconfig.app.json also has similar settings)
{
"compilerOptions": {
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
},
"jsx": "react-jsx",
"jsxImportSource": "react",
},
"composite": true,
"include": ["src"],
"files": [],
"references": [
{ "path": "./tsconfig.app.json" },
{ "path": "./tsconfig.node.json" }
]
}
{
"compilerOptions": {
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
},
"jsx": "react-jsx",
"jsxImportSource": "react",
},
"composite": true,
"include": ["src"],
"files": [],
"references": [
{ "path": "./tsconfig.app.json" },
{ "path": "./tsconfig.node.json" }
]
}
{
"imports": {
"@oak/oak": "jsr:@oak/oak@^17.1.4",
"@tajpouria/cors": "jsr:@tajpouria/cors@^1.2.1",
"react": "npm:react"
},
"nodeModulesDir": "auto",
"compilerOptions": {
"lib": [
"ES2020",
"DOM",
"DOM.Iterable",
"esnext"
],
"jsx": "react-jsx",
"jsxImportSource": "react",
"jsxFactory": "React.createElement",
"jsxFragmentFactory": "React.Fragment"
},
"unstable": [
"sloppy-imports"
],
"lint": {
"rules": {
"include": [
"ban-ts-comment",
"no-irregular-whitespace",
"jsx-no-children-prop"
]
}
},
"fmt": {
"indentWidth": 4,
"singleQuote": true
}
}
{
"imports": {
"@oak/oak": "jsr:@oak/oak@^17.1.4",
"@tajpouria/cors": "jsr:@tajpouria/cors@^1.2.1",
"react": "npm:react"
},
"nodeModulesDir": "auto",
"compilerOptions": {
"lib": [
"ES2020",
"DOM",
"DOM.Iterable",
"esnext"
],
"jsx": "react-jsx",
"jsxImportSource": "react",
"jsxFactory": "React.createElement",
"jsxFragmentFactory": "React.Fragment"
},
"unstable": [
"sloppy-imports"
],
"lint": {
"rules": {
"include": [
"ban-ts-comment",
"no-irregular-whitespace",
"jsx-no-children-prop"
]
}
},
"fmt": {
"indentWidth": 4,
"singleQuote": true
}
}
15 replies