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

In my Bitbucket Pipeline I use the following step, with the intention to download some npm dependencies from a private GCP npm Artifact Registry: - step: &download-dependencies name: Download ...
nucleus's user avatar
  • 25
-2 votes
0 answers
26 views

I’m working on a React (Create-React-App) project that is deployed behind CloudFront + S3. Our application is 100% frontend JavaScript — we do not use PHP anywhere in our codebase or backend. However, ...
Pavan's user avatar
  • 7
1 vote
1 answer
24 views

Using Node v22.14.0 (npm v11.3.0). Our package.json includes the following dependencies "@example/package1": "1.1.0-release.1773790487", "@example/package2": "2.6.0-...
FionaE's user avatar
  • 43
2 votes
0 answers
47 views

I've been trying to install @livewire/vite-plugin since last week, but I'm getting an authentication error. I researched it and saw that npmjs is forcing the creation of tokens for validation. I ...
Jonas Novello's user avatar
0 votes
0 answers
32 views

Estava gerando um build e ele teve essa falha que não estou conseuindo resolver Install dependencies 1s Running "npm install" in /home/expo/workingdir/build directorynpm error code ...
Joana Elena's user avatar
-4 votes
1 answer
37 views

I was working on my Tauri project when I came across this error when I ran npm run tauri dev : error[E0515]: cannot return value referencing temporary value --> src/main.rs:209:97 | 209 | ...
Cheesecake's user avatar
0 votes
0 answers
29 views

I’m running a Next.js 14 project on WSL2 (Ubuntu 22.04) with Node.js v20 via nvm. The dev server starts without errors and shows: Local: http://localhost:5173 Network: http://0.0.0.0:5173 However, ...
primeautomations's user avatar
Best practices
1 vote
1 replies
24 views

I understand the basic principles of package-lock.json and why it has absolute URLs (so developers can mix packages from different servers like public vs private packages and ensure/enforce this kind ...
Deeepdigger's user avatar
-1 votes
0 answers
37 views

I have a case in which build agents have to use internal NPM feeds only. While importing (read:publish) some npm packages into that feed, the npm publish command fails with npm error Automatic ...
Mheriff's user avatar
  • 119
Advice
1 vote
2 replies
66 views

I have issues with downloading "@stream-io/openai-realtime-api" package in NextJS project. Error: enter image description here I tried to clear cash, change registry, used "--legacy-...
Ktsarvi's user avatar
0 votes
1 answer
30 views

I would like to define a runtype that is equivalent to the following static typescript type: export type Tourney2 = { type: 'flat'; name: string; scoreType: TScoreType; matches: string;...
preitinger's user avatar
-3 votes
0 answers
31 views

I have a Turborepo monorepo. I use @repo/sth scopes for packages. I would like to also use @customers/someone as a scope. From: https://turborepo.com/docs/crafting-your-repository/structuring-a-...
madflow's user avatar
  • 8,693
-1 votes
0 answers
42 views

I have created a Next.js (TypeScript) application, called "vkdgen". Afterwards, I've created and published a small component library for my project called "vkdFramework4NextJS". ...
Janosch's user avatar
  • 92
Tooling
0 votes
0 replies
30 views

I'm getting [warning] DiagnosticCollection with name 'eslint' does already exist. in the OUTPUT extensions tab when I open the terminal in VS Code. I type ng serve to run my Angular project and ...
dotNetBlackBelt's user avatar
-2 votes
0 answers
44 views

I need to work with a local package with my next.JS project. To avoid publishing on npm every time : - On the next.js project: npm i ../test-sample-api. I can now see on my package.json the line : &...
Sha's user avatar
  • 47
-3 votes
1 answer
251 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
Tooling
0 votes
1 replies
67 views

For context: I have 2 projects of next.js and go respectively, previously I had a logic to compress some data in next.js backend (getServerSideProps) then send this data to next.js client side and ...
Hmmmmm's user avatar
  • 330
0 votes
1 answer
63 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.6k
Advice
1 vote
3 replies
63 views

I have an Angular component in a private npm package using ng-packagr and hosted on AWS (CodeArtifact). The purpose of the component is to be a reactive form field that shows and hides errors based on ...
Alex Davis's user avatar
-3 votes
0 answers
35 views

I am trying to install a project 'Medusae' but I ran into some troubles. When I try to install dependencies via npm i get this error npm warn cleanup ] npm error code 1 npm error path C:\Users\ishaa\...
Ishaan Gupta's user avatar
3 votes
1 answer
69 views

My understanding is that: There are certain npm packages that are intended only for use on certain operating systems. For example fsevents is only for macOS - it's for listening to file changes in a ...
dwjohnston's user avatar
  • 12.5k
-5 votes
1 answer
65 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
-1 votes
1 answer
68 views

My understanding is that if a package-lock.json exists in a project - then when we run npm i npm will try install all the packages in package.json - but keeping things tied to what it sees in the ...
dwjohnston's user avatar
  • 12.5k
1 vote
0 answers
83 views

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 ...
avishekdr's user avatar
  • 1,154
2 votes
3 answers
96 views

I'm working through the faust.js documentation to create a headless WordPress site with Next.js. I can't get past step two: https://faustjs.org/docs/tutorial/learn-faust/#2-set-up-headless-wordpress-...
Jillian Hoenig's user avatar
1 vote
0 answers
96 views

Whenever I try to use npm I get an error: npm ERR! Error: crypto binding not found. npm ERR! Please build node with openssl I have completely uninstalled Node.js and npm, deleted their directories ...
Jim's user avatar
  • 63
1 vote
0 answers
78 views

What I Want to Do Install ESLint and related dependencies using pnpm in my TypeScript React frontend project (part of a Wails Go + TypeScript hybrid application). What I Did Ran pnpm add --save-dev ...
Sebastian Romero Laguna's user avatar
Tooling
1 vote
0 replies
46 views

I'm trying to build a pre-built dev container (see here). Among others, the app uses some Node.js packages. To speed up the dev container performance, I'd like to cache them. For this, I'm running npm ...
mu88's user avatar
  • 5,699
0 votes
0 answers
135 views

I want to create new project using npx create-tsrouter-app@latest I keep getting this issue. The error always error code ECOMPROMISED and error Lock compromised. I even tried using npm create, but ...
flyingduck92's user avatar
  • 1,692
1 vote
1 answer
77 views

I am building an npm library (angular library) that needs the following packages in order to run: @angular/core@17 @formio/[email protected] @ngx-bootstrap@12 I have declared the above as peer dependencies of ...
Russell M's user avatar
1 vote
0 answers
42 views

I am trying to set up Saucectl in my project and I have done the entire setup which includes saucectl config files and env variables. I verified all the sauce documented Packages option, Dependency ...
Satish Rongala's user avatar
1 vote
0 answers
115 views

When I want to install my npm packages library with the latest release of npm v11.6.2: npm install @my-org/[email protected] I've got this error on any package and any project: npm error Cannot ...
Vincent Leclerc's user avatar
1 vote
0 answers
41 views

I've been trying to install the local Squarespace server using npm and it's been a mess. My co-workers who use Macs don't have these problems, but the other person with Windows 11 does. When I run npm ...
Zach M's user avatar
  • 11
0 votes
0 answers
112 views

I did a fork of this repository and I changed in each package.json the name from @bigbluebutton/editor to @piszczj/editor. Then I've run yarn install and then yarn workspace @piszczj/utils npm publish ...
Korer's user avatar
  • 393
0 votes
1 answer
147 views

I am having a problem downloading the Sharp dependency for my Next.js project v15.5.6. I've tried reinstalling Node.js, but it still fails. Below is the failure message after running npm install sharp ...
Jannette Rose's user avatar
0 votes
0 answers
51 views

I have a project that contains a folder with a library of React components and an another with an example application that showcases the components. This is the (simplified) structure: +- [common-...
Paolo Tedesco's user avatar
0 votes
0 answers
42 views

I have a frontend repo, in which I have a subdirectory named share-test-ids. I have a package.json there { "name": "shared-test-ids", "version": "1.0.0", &...
Oleg's user avatar
  • 29
0 votes
1 answer
71 views

I am using Ubuntu 24.04 and a LEMP stack and vite to host a Laravel 12 application. I am deploying with deployer and running npm run build on the server. Occasionally, I get hit with what seems to be ...
wruckie's user avatar
  • 1,821
0 votes
0 answers
41 views

I'm building a CLI using Oclif v4 with TypeScript and tsup for bundling. I want my main command to run by default, without requiring the user to type it as a subcommand. Currently, my oclif ...
Vin's user avatar
  • 85
0 votes
1 answer
209 views

After upgrading from Angular 17 to Angular 20, my build script on Jenkins hangs on the npm ci command. I changed the script to npm ci --loglevel verbose instead, and noticed that the last output ...
adamdport's user avatar
  • 12.8k
0 votes
1 answer
55 views

Assume that the package foo depends on the package bar, both packages are in the same monorepo and being developed in parallel. Since npm allows installing the local dependencies by relative paths, ...
Takeshi Tokugawa YD's user avatar
1 vote
1 answer
48 views

I’m trying to automatically build and publish an NPM package to my GitHub repository using GitHub Actions. The workflow runs on pull requests and performs these steps: Run tests Check linting Publish ...
Abdur Rahman's user avatar
0 votes
1 answer
84 views

I deleted the node_modules folder and package-lock.json, and ran this: Meteor npm install @mui/[email protected] npm error code ERESOLVE npm error ERESOLVE unable to resolve dependency tree npm error npm ...
VikR's user avatar
  • 5,174
0 votes
0 answers
35 views

I'm executing automation script using WebdriverIO and Appium in Android and 'iOS'. I have automation test in javascripts. The functions in the automation scripts are working great in 'Android' but I ...
Hadi Ahmad Zainuddin's user avatar
0 votes
0 answers
70 views

I'm a student and this is my first time building a VSCode extension. I'm using Tree-sitter to parse JavaScript. I keep running into this error when running vsce package or npm list: npm error code ...
Aryan's user avatar
  • 1
0 votes
0 answers
71 views

I am facing a confusing issue while trying to run npm commands programmatically in a React project deployed to Azure App Service. What works: Running npm commands locally via my Node.js script works ...
shan muhammad's user avatar
6 votes
2 answers
220 views

I'm trying to run a NestJS project that worked perfectly before, but after a full reset of my Mac I'm hitting a weird TypeScript error: src/health/health.service.ts:13:20 - error TS2580: Cannot find ...
Cristian-Alexandru SANDU's user avatar
0 votes
0 answers
108 views

I have been using a new package.json entry points using exports. TypeScript works very well without any problems. So far, I have used it in a monorepo for a backend application where all files are .ts ...
Harshal Patil's user avatar
1 vote
0 answers
253 views

I'm trying to run the Google Gemini CLI on my MacBook Air (Intel), but it crashes on startup with a networking error. The debug console shows it fails during the "discovery" phase for ...
Tushar Rai's user avatar
  • 2,539
0 votes
1 answer
185 views

Problem When I care about devsecops there are some best practises: Use lockfiles to avoid malware via supply chain attacks Update vulnerable node dependencies But as soon as I update a dependency ...
Matthias M's user avatar
  • 15.1k

1
2 3 4 5
1000