Skip to main content

Questions tagged [npm]

Use this tag if a question is about npm

0 votes
0 answers
6 views

We have a NodeJS project in our kubernetes cluster. We are looking at using Sonatype Nexus(self hosted) for caching packages. One package is a private package that we host on github npm registry. We ...
Amit's user avatar
  • 101
0 votes
2 answers
185 views

Dockerhub says I have the vulnerabilities: CVE-2023-5363 and CVE-2023-5678, which is part of the openssl package. See this image: Does anyone know how I can resolve this issue? I've simplified my ...
learningtech's user avatar
-1 votes
1 answer
33 views

I was in the process of creating function components. When I noticed a problem was after I hit save and my terminal never updated me if it was a successful compile... I'll admit I panicked... a little....
Trottie Mcqueen's user avatar
2 votes
0 answers
232 views

In order to force devs to update vulnerabilities more often we wanted to add npm audit to a pre-push hook. We thought this would cut down on the number of dependabot alerts too. However, while ...
JJ3's user avatar
  • 21
2 votes
1 answer
2k views

I would like to upload .env file to a build in Github Actions. Is there any way I can do it?
Nitesh B.'s user avatar
  • 121
0 votes
1 answer
646 views

I am trying to create an image for my angular application for running unit and e2e tests. I started from the ubuntu image and then installed the other components. My dockerfile has the following ...
sridhar pandurangiah's user avatar
14 votes
2 answers
4k views

Context There are multiple ways to scan projects for vulnerabilities. Dependabot can be configured to check repositories for issues, and automatically submits pull requests to resolve. NPM Audit will ...
JohnLBevan's user avatar
0 votes
1 answer
277 views

I have a project that looks like this: SOME_MONOREPO, managed by lerna - package-a - package-b - depends on package-a, package-c - package-c - is currently private, so ...
dwjohnston's user avatar
3 votes
1 answer
514 views

I'm using the following resources as a guide to git flow: git-flow cheatsheet git-flow Using git-flow to automate your git branching workflow However, none of them explicitly mention at what point you ...
Plastikfan's user avatar
2 votes
1 answer
9k views

I have a Jenkins build I am using for a Vue.js application. I am trying to install all dependancies as part of the pipeline and am running into some issues. I've included the below output as well as ...
joshk132's user avatar
  • 465
3 votes
1 answer
17k views

I have a following Dockerfile: FROM ubuntu:18.04 RUN mkdir app && cd app WORKDIR app/ RUN apt-get update && apt-get install -y \ software-properties-common \ curl \ sudo ...
Leon Ma's user avatar
  • 33
1 vote
2 answers
577 views

I use NPM to build my web project, and it does so nicely to a little ZIP file. Keeps everything nice and light, and I can easily keep bloat down. My current process is to use an FTP client (Win SCP), ...
shanehoban's user avatar
1 vote
1 answer
206 views

I'm using Docker namespaces in an effort to allow files created within a volume to be arbitrarily read and written to by both the container user and the host user (please let me know if this is even a ...
aryzing's user avatar
  • 131
14 votes
2 answers
29k views

I have a Docker image, let's call it frontend.image, that I use for a Jenkins build slave. The Jenkins Docker plugin will spin up a container from this image and build artifacts inside the container. ...
Brian Ogden's user avatar
5 votes
1 answer
1k views

With the current Github outage, I noticed a problem with my packer setup. In a nutshell, I have a packer setup where I call a shell script that looks like this: #!/bin/bash set -e ... npm install ... ...
Philipp Claßen's user avatar