All Questions
11,738 questions
0
votes
0
answers
62
views
Webscrape with Node.js - Javascript with login
I have been scraping a investment site with Python and Selenium but due to changes needed to system I will no longer be able to use Python and only option I seem to have is Node.JS / NodeRed
Anyhow I ...
0
votes
0
answers
24
views
Detecting token creations with Solana Program Library not working as it should be
Here's my current code:
const {Connection, PublicKey} = require("@solana/web3.js");
const bs58 = require('bs58');
// Program IDs for monitoring logs
const TOKEN_PROGRAM_ID = new PublicKey('...
0
votes
0
answers
41
views
What's the reason I get a blank screen while uploading a Json to Flowise?
I have been recently trying to do a multiagent project that to summarize, consists on:
Through an user input (often a query), the first agent will be dedicated to making the input more suitable for ...
0
votes
2
answers
76
views
Fetch data from an API in ReactJS and display it using components
I am having issues displaying data to the frontend in ReactJS.
I am trying to fetch data from an API and I want to render the data in a card which I have created already
import React from 'react'
...
0
votes
0
answers
45
views
Vercel Build Failing with Prisma + Supabase + Next.js API Routes (CI=false workaround, still errors)
I'm deploying a backend-only Next.js project to Vercel that uses:
Next.js API routes (pages/api)
Prisma ORM (connected to Supabase Postgres)
TypeScript (v5+)
.env file with DATABASE_URL
Some logic ...
0
votes
1
answer
186
views
app.use(express.json()) is not working in express version [email protected] , but works fine in [email protected]
import express from "express";
const app = express();
import dotenv from "dotenv";
import path from "path";
let _dirname = path.resolve();
import cors from "cors&...
1
vote
1
answer
47
views
Interception xhr requests after pressing the load more button with puppeteer
Initially two json files arrive on the site - the rest arrive after clicking the ‘load more’ button. I'm trying to intercept all requests. The example shows how I am waiting for the button to appear ...
-3
votes
1
answer
63
views
Problem in a recurrency function in node.js
I need a help about my code.
The function JsontoBase64 receives a json (parameter named jsonobj) which contains a base64 encoded pdf (field named "BytesBoleto") among many other fields.
For ...
0
votes
0
answers
45
views
Slash Commands Are Not Getting Registered, Discord js v14.18.0
There is no error in console. I am confused with it. with the discord js version 14.18.0 I am using this from long time but never faced this error but now I am, Slash commands are not getting ...
2
votes
5
answers
10k
views
"spawn npx ENOENT spawn npx ENOENT" Error in Cline VSCode MCP Server Connection
I tried to install OpenRouter MCP Server using Cline Extension in VSCode Insiders as MCP Client. I got my reference from Smithery (https://smithery.ai/server/@mcpserver/openrouterai).
This is my ...
0
votes
0
answers
65
views
I can't create a Generic Pass for Google Wallet
It looks like it's all right, but Add the token to the Google Pay link, the Pass Add button on Google Wallet is not generated. Could verify if the token is correctly formatted and compatible with the ...
-3
votes
2
answers
345
views
Cypress on headless mode not able to resolve promises through await calls
I am developing an API testing backend using Cypress with cy.request. I am aware that cy.request natively uses built-in promises (Cypress.Chainable), so there is no need to handle it with JavaScript ...
0
votes
1
answer
68
views
fs.writeFile adds extra brackets to json of key=>values object in node.js
I'm trying to update one JSON file in a for loop called asynchronously. Each time I update the whole file, with 1 object.
This is my very complex code after half a day of research. (I know it's too ...
0
votes
3
answers
73
views
getting NaN value some times and some times not
I get NaN value when I try to show the value of (item.total_amount,item.price,item.addtional_price) in ejs page but when I debug the variables some time I get the value and some time not!!
this is the ...
-1
votes
1
answer
60
views
Format JSON file from text [duplicate]
I would change format file
My current files format
Email:Password
Email:Password
Email:Password
I would like to change it to JSON format but can't do it manually because there are around 500+ ...