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
4 views

Issues with importing an installed library (Opensea API) with npx?

I am trying to run this Opensea get-events API example locally. node -v v18.20.4 npm list └── (empty) npx api install "@opensea/v2.0#45iy1ilxxofiw1" ── @api/[email protected] -> ./.api/...
KubiK888's user avatar
  • 4,595
-3 votes
0 answers
14 views

How to tell if I'm on localhost nodejs?

How do I tell if I'm in localhost when I'm using nodejs? Is there some property I can use that will tell me the domain I'm on? I want to do something like this: var url = "remotedomain.com"; ...
1.21 gigawatts's user avatar
0 votes
0 answers
5 views

Error: spawn winEvents.exe ENOENT occurs in packaged electron app

Uncaught Error: spawn C:\Users\user\Autoclicker\esdeath\out\snowflake-win32-x64\resources\app.asar\node_modules\lepikevents/src/win/winEvents.exe ENOENT at ChildProcess._handle.onexit (node:...
Adapt's user avatar
  • 11
-1 votes
1 answer
15 views

How to test a local nodejs server from another local web project

I had a nodejs server and I used web pages to test the API locally. But I've now separated the nodejs project and the web pages because it was too cumbersome. Typescript was having trouble running in ...
1.21 gigawatts's user avatar
0 votes
0 answers
5 views

NextJS spams 'TypeError: result.pipeToNodeResponse is not a function' in error log

I have a NextJS site running in an Azure Web App. It spams this error message to the terminal every 3 seconds or so: TypeError: result.pipeToNodeResponse is not a function at Object....
icanfathom's user avatar
0 votes
0 answers
9 views

Express session is not saving data

I am trying to store information on my req.session object upon login and at a later time access this to verify if a user is logged in for middleware I am aware there are several similar questions but ...
ceebee's user avatar
  • 1
0 votes
0 answers
10 views

Adding Node.js and VSCode extensions causes Package Conflict

I recently downloaded Node.js on my machine and set it up with all the default options. I also added ESLint, Nx Console, Playwright Test, Prettier, Jest Runner via Visual Studio Code extensions. After ...
Ahmed Zaidan's user avatar
0 votes
1 answer
18 views

sh 'npm install' cmd not working in jenkins pipeline. Note: jenkins is installed inside windows

I am writing a simple jenkins files to test, build and deploy angular application. but my jenkins pipeline is failing at sh 'npm install' Here is my jenkins pipeline script pipeline { agent any ...
Aakash Giri's user avatar
0 votes
0 answers
22 views

EJS isn't being rendered

I'm making a rock, scissors, paper game on the backend of Node.js with express server, frontend.js client-side, index.ejs and main.css files. I firstly want to render a string line of the result of ...
Yuval Yanay's user avatar
1 vote
1 answer
11 views

No version matching "^11.0.0" found for specifier "remark-rehype" (but package exists)

I tried to install react-markdown using bun. But I get the following error: $ bun i react-markdown bun add v1.1.20 (ae194892) error: No version matching &...
The Pythonious Guy's user avatar
0 votes
0 answers
24 views

How to send a Bearer Token from front-end to back-end

My back-end is already working ,I tested it in Postman but I don't know how to get the Bearer Token,which is in front-end; I am using httpOnly and withCredentials. NODE: MiddleWare: const jwt = ...
Guilherme Peixe's user avatar
0 votes
0 answers
8 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
11 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
11 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
16 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

15 30 50 per page
1
2 3 4 5
7