Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [node.js]

Node.js is an event-based, non-blocking, asynchronous I/O runtime that uses Google's V8 JavaScript engine and libuv library. It is used for developing applications that make heavy use of the ability to run JavaScript both on the client as well as on the server side and therefore benefit from the re-usability of code and the lack of context switching.

node.js
0 votes
0 answers
7 views

Playing audio node. play.ai

Based on the details from play.ai's docs, it should be easy to play base64 audio but I'm running into issues. I am using nuxtjs. These are the docs myWs.on('message', (message) => { const event = ...
Warren's user avatar
  • 23
0 votes
0 answers
4 views

More verbose output of native module build phase during yarn install

My yarn install --frozen-lockfile --verbose is getting hung at what seems to be the native module/gyp build phase and I can't figure out why. I've tried export npm_config_loglevel=verbose before ...
rynop's user avatar
  • 52.5k
0 votes
0 answers
7 views

NodeJS WebRTC - RTCAudioSource - Expected a .byteLength of 480, not 2770

I'm trying to have my nodejs backend act as a peer that streams pcm audio to the browser via webrtc (https://github.com/WonderInventions/node-webrtc). (let's assume it's the only way to achieve what I ...
Royi Bernthal's user avatar
0 votes
0 answers
10 views

Serving static files directly in Google App Engine with express

I have a standard Google App Engine environment and am trying to serve some static files for my create-react-app frontend, but I'm not able to do so without copying over the client/build/ files into ...
selroh18's user avatar
0 votes
0 answers
8 views

Problem recovering image, local drive - VPS

I recently uploaded my API to a VPS, and I'm having trouble recovering the images that are being saved locally. Whenever I try to open the image URL, I get a 404 Not Found error. I'm not saving the ...
Leo Gonzalez's user avatar
0 votes
0 answers
14 views

Cannot find module 'index'\nRequire stack:\n- /var/runtime/index.mjs Error on AWS lambda

I am trying to invoke a lambda function on AWS but I am getting the error: "Error: Cannot find module 'index'\nRequire stack:\n- /var/runtime/index.mjs" Folder structure: enter image ...
Shreya's user avatar
  • 1
0 votes
0 answers
6 views

How to create an API authorization with the latest IOS SST and AWS

I want to create an API with the new SST v3 aka ION SST. Docs don't say much about auth-related things and I feel confused. I have a separate Next.js app and now I want to create a backend ...
Karol's user avatar
  • 620
0 votes
0 answers
8 views

Extrange problem with URL command line parameters on Electron app

I have discovered that if you pass a URL parameter using the command line to an Electron app, it must be the last one. If this condition is not met then electron fails to load the application and ...
Jesús López's user avatar
-1 votes
0 answers
8 views

Displaying host machine info with docker container

I have nextjs app and im using nodejs os to gather system info about totalram cpu etc. How i can make it work with docker cause if i run my app with docker compose on my app ui i see ram allocated to ...
Teeco's user avatar
  • 13
0 votes
0 answers
9 views

aws ec2 nginx reverse proxy to nodejs allow cors not working

I tried a couple of examples: /etc/nginx/conf.d/default.conf server { listen 80; server_name ec2ip; set $cors_origin ""; set $cors_cred ""; set $cors_header ...
Steve Tomlin's user avatar
  • 3,683
0 votes
0 answers
23 views

Link from react-router-dom is not redirecting

Since the button is within a <Link /> Component it shoul redirect to the '/home' page but it is not, its not redirecting anywhere. the function PostLogin is being Called i have confirmed <...
Football Dudes's user avatar
0 votes
0 answers
11 views

How can i generate the arrow function format typeorm migration file?

when ever i am generating migration file i am getting this kind of format public async up(queryRunner: QueryRunner): Promise<void> { await queryRunner.query(`ALTER TABLE "transaction&...
Sriram Alavalapati's user avatar
-3 votes
0 answers
23 views

Stripe Connect Payouts API [closed]

I am creating an application in which users can add their bank accounts in the application and from admin side I want to send the payouts to their bank accounts. I am using Node.js and Stripe.js (In ...
Hammad Umar's user avatar
-1 votes
0 answers
11 views

req.headers.authorization is undefined

So I've been trying to implement JWT authorization for my project, and there's this specific step that I've been stuck for hours... So I have a middleware setup to try and verify the access token ...
BabyBeginner's user avatar
0 votes
1 answer
25 views

The input in searchbar disappears when i click on any other space/part of the browser of when i click tab button

import React, { useState, useEffect, useRef } from "react"; import { useNavigate } from "react-router-dom"; import axios from "axios"; import Autocomplete from "@mui/...
ismail sakhani's user avatar

15 30 50 per page
1
2 3 4 5
31564