6,607 questions
2
votes
2
answers
290
views
ng build crashes with heap corruption (exit code -1073740940) on Node.js 24 during Angular library compilation
After migrating to Angular CLI 20.3.6 and Node.js 24.0.0 When building an Angular library using ng build --configuration production library, the build process crashes sporadically with exit code -...
1
vote
0
answers
102
views
NPM - npm install fails with ENOENT mkdir error on Windows VDI (Node v24, no admin rights)
I've Node v24 installed in my Windows VDI. When running command npm i it gives the following error:
PS C:\Users\RAY\Dashboard\frontend> npm i
npm error code ENOENT
npm error syscall mkdir
npm error ...
0
votes
0
answers
65
views
Why does TypeScript resolve types to a `types/index.d.ts` file when `moduleResolution` is `"node"`?
The VueX npm package has an exports property in its package.json like this:
"main": "dist/vuex.cjs.js",
"exports": {
".": {
"module": &...
0
votes
0
answers
179
views
Detecting incoming messages vs. status updates using whatsapp-web.js
I'm using whatsapp-web.js for automating responses on my WhatsApp business profile. But there's a recurring issue where the bot mistakenly interprets my contact's status updates (posted publicly to ...
0
votes
2
answers
211
views
How can I update my server file so that I can have the server up and running?
I am running my backend using mongodb and express. I am restarting the server using nodemon. After running:
npm run dev
I am getting the error below:
> [email protected] dev
> nodemon server.js
[...
-1
votes
2
answers
56
views
sequelize relationships Cannot read properties of undefined (reading 'hasMany')
I'm trying to integrate sequelize with the db conection to postgres and i am getting an error where relationships are built.
i don't know if i'm missing something at this point
index.js
'use strict';
...
0
votes
0
answers
142
views
Expo SDK 54 + Parse: Error importing Node core modules (events, http, stream) after update
I'm currently developing a React Native app using Expo SDK 54, with Parse as the backend (via Back4App), and importing parse/react-native.js.
Android Bundling failed 5623ms node_modules\expo-router\...
1
vote
0
answers
83
views
is there an npm equivalent of "pip download" (not npm pack)
When installing a dependency, that dependency itself may also have dependencies. In pip for example, typing "pip download " downloads the dependency's .tgz as well as the dependency's ...
1
vote
1
answer
138
views
Is keep alive set to true by default for outgoing calls from nestjs application
I am using NestJS version "@nestjs/core": "^9.0.9" and it has axios version as "axios": "1.8.2" and nestjs/axios version as "@nestjs/axios": "^3....
0
votes
0
answers
47
views
KEDA Azure Service Bus ScaledObject fails with "no connection setting given" despite Azure AD auth and correct permissions
I am trying to configure KEDA autoscaling on my OpenShift cluster to scale a deployment based on Azure Service Bus Queue depth. I am using Azure Active Directory for authentication instead of a ...
0
votes
0
answers
58
views
Ultra-Fast Angular CI: Persistent, Local node_modules Cache on Self-Hosted Runner
so I'm having a bit of a headache with my CI setup. I've got my GitLab runner running right here on my own machine, you know, locally.
The main thing is, I want my node_modules to be super, super fast....
0
votes
0
answers
47
views
webpack file doesn't refer node_modules present in the imported path , but refer for it its node_modules
I am webpacking a module from pathA, node_modules are ignored.
I import the pathA/index.js in pathB node index.js dynamically, which has the required node_modules.
But when I run pathB node index.js, ...
0
votes
0
answers
52
views
Aurelia, Webpack Upgrade from Version 3 to 5
I need some professional help.
Currently having a project which has some aurelia js version1 apps and we have some issues because we run on an old version of node: 16.18, the entire package for the ...
0
votes
0
answers
400
views
Error: Module not found: Error: Can't resolve 'xxxxxx' in C:\Path...\fesm2022
I'm stuck with this issue and it's driving me a bit crazy. Hope someone can throw me a lifeline here.
So I have a frontend Angular project.
In this project, I have a private package (my-shared-lib) ...
1
vote
1
answer
192
views
Standalone build does not create node_modules folder, but only in Docker container
I am using Next.js 15.3.1 on Node.js 22.16. I have the Next.js project configured as a standalone build. When I build the application using npm run build, a ./.next/standalone folder is created, ...