Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
19 views

I want to make a minimal interactive console utility using Effect. Started from an empty Effect app: npx create-effect-app@latest ... (interactive part) cd effect-app npm install Then I copy-pasted ...
enkryptor's user avatar
  • 1,693
-3 votes
0 answers
57 views

Executing the npm audit. It will be enough to show just last three issues - all of them has "fix available via `npm audit fix" message: tar <6.2.1 Severity: moderate Denial of service ...
Takeshi Tokugawa YD's user avatar
0 votes
1 answer
26 views

Suppose I have code similar to this: const client = await createClient() .on("error", (err) => console.log("Redis Client Error", err)) .connect(); const promise1 = client....
Vilx-'s user avatar
  • 107k
-4 votes
0 answers
21 views

I'm making a search engine for my personal use, and something that I want to do is, using a URL of a website, to see if there are any trackers in that website. Is there any simpler/faster way to see ...
Macr Nostaski's user avatar
0 votes
0 answers
18 views

I am trying to use the automation features built into the Claude CLI. Namely, if you pass in the --print flag argument, with a prompt (and --allowed-tools to make it actually do something) it will ...
tutiplain's user avatar
  • 1,479
-1 votes
0 answers
38 views

If I have understood correctly, the NestJS with default Express engine uses and enables the "body-parser" as default. If so, I am not fine with it because most requests has GET-type, and for ...
Takeshi Tokugawa YD's user avatar
1 vote
0 answers
37 views

Here is my code. Both index.html and service-worker.js are served on http://localhost:8080. index.html <!doctype html> <html lang="zh"> <head> <script> if ...
West's user avatar
  • 99
Advice
1 vote
4 replies
47 views

I have a CPU-heavy calculation function in my Node.js backend, and I expected it to run asynchronously because I wrapped it inside a Promise. However, when I call this function, the entire server ...
Debian Silase's user avatar
1 vote
1 answer
39 views

I have a NestJS app using Mikro-ORM and PostgreSQL. I’m new to Dockerizing database migrations and Mikro-ORM in NestJS. Locally, when I run: npx mikro-orm migration:create npx mikro-orm migration:up ...
dumpAndDie's user avatar
0 votes
0 answers
48 views

I tried to deploy a Node.js application to IIS. I tried to send multipart form data from a frontend API as a post request. Though I have enabled CORS configuration in Node.js server.js page, CORS ...
tharushi ishanka's user avatar
0 votes
1 answer
60 views

I'm using npm with a custom global prefix: npm config set prefix ~/.local When I install global packages, e.g.: npm install -g yo pagedjs-cli asciidoctor-pdf yo generator-code npm creates relative ...
Ahmad Ismail's user avatar
  • 14.5k
0 votes
1 answer
48 views

I installed GridDB 5.7 and created a Node.js project: mkdir griddb-node-test cd griddb-node-test npm init -y npm install griddb-node My code (test.js): const griddb = require('griddb-node'); console....
Md Salimullah's user avatar
-1 votes
0 answers
44 views

I have an service built using Node.js and Express. I was able to start the service when using Express version 4.19.2, but after updating to version 5.1.0, I can no longer start it. The error I’m ...
Danger Mouse's user avatar
0 votes
0 answers
63 views

signupWithAccessCode.js: const functions = require("firebase-functions/v2"); const {onRequest, onCall, HttpsError} = require("firebase-functions/https"); const admin = require(&...
Jack Murrow's user avatar
2 votes
1 answer
114 views

I'm doing a little project to learn C++, and web stuff. I come from Python, so I don't really understand this source code needing to be built first and then turned into an .exe thing, quite yet, so ...
Akut Luna's user avatar
  • 422
0 votes
0 answers
48 views

I installed GridDB 5.7 and am trying to use the Node.js client to create a store object. My code is: Input const griddb = require('griddb-node'); const factory = griddb.StoreFactory.createStore({ ...
Md Salimullah's user avatar
1 vote
0 answers
30 views

The Node.js Backpressure in Streams documentation begins with an example that compares the use of the zip(1) utility with a Node.js script that uses a simple stream to achieve the same result. A good ...
Paul Patterson's user avatar
Best practices
1 vote
3 replies
41 views

I’m trying to build an application that can download patient documents from Athenahealth, but I can’t figure out whether this is actually supported. The official API documentation is extremely limited ...
Vladimir Meliksetyan's user avatar
0 votes
1 answer
39 views

I’m using a Turborepo monorepo with a Next.js 15 App Router project (apps/web) and a shared packages/types package that contains my NextAuth module augmentation. However, TypeScript still gives this ...
total_idiot's user avatar
1 vote
1 answer
112 views

I'm trying to use Prisma in my NestJS project. Prisma initializes correctly, but whenever I run any Prisma CLI command (e.g., npx prisma, npx prisma migrate dev, etc.), I get this error: Failed to ...
Misbahul Alam's user avatar
Best practices
1 vote
1 replies
96 views

I was watching a tutorial on cloning YouTube, and in it, they used Mux for the streaming API. Generally, when you need to stream video on a website, do you need to use a third-party API here, or is ...
Shaun Hossain's user avatar
-5 votes
1 answer
59 views

I'm creating an address generation program, and I'm using Node.js I decided to add bitgo to the infra but installing types doesn't work Here's the error I get: └─$ npm install bitgo npm error code ...
mofebanks's user avatar
Best practices
1 vote
3 replies
65 views

So I am working on a MEAN stack project where in node I will emit the data to UI and in frontend I had some widgets ( as charts like gauge , line , pie and table ) where user can add dynamically ...
Vignesh's user avatar
  • 51
1 vote
0 answers
33 views

I'm stuck getting a "permission denied" error when using the gmail googleapi in a firebase cloud function to "import" syntetic emails to a workspace email box. I've followed this ...
phosph's user avatar
  • 31
0 votes
0 answers
25 views

I want to use opencv in node. Found @techstark/opencv-js and looks promising, but I cannot run even a simple example. I've installed the examples from https://github.com/TechStark/opencv-js-examples. ...
Gabriel Genellina's user avatar

1
2 3 4 5
9418