Skip to main content
Filter by
Sorted by
Tagged with
2 votes
0 answers
74 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,146
0 votes
0 answers
34 views

How do we start the development server for a monorepo app using a custom script from different pacakge, which will be typically used to run the app this is package.json at root level { "name&...
Mojo's user avatar
  • 518
0 votes
0 answers
72 views

This is my package.json "scripts": { "dev:tailwind": "npx @tailwindcss/cli -i ./src/assets/styles/input.css -o ./dist/assets/styles/output.css", "dev:...
aboutjquery's user avatar
0 votes
0 answers
108 views

I'm changing a project to use Zero-Installs (where .yarn/cache is committed). It works on local because the process is yarn and it builds the .yarn/cache and runs the post-install scripts necessary to ...
FlavorScape's user avatar
  • 14.5k
3 votes
1 answer
489 views

I have an old Laravel project where https://materializecss.com is used. Problem is it's old and buggy and it's abandonded in 2018. I decided to switch to popular fork - https://materializeweb.com. But ...
barmaxon's user avatar
  • 189
0 votes
0 answers
175 views

I have decided to optimize my deployment strategy recently, and started doing some tests about various stuff. One of them was deciding how to run processes. To test it, I've created a simple node.js ...
Baran Elitez's user avatar
0 votes
1 answer
64 views

If I want to start my React project with npm start I get this error: The command "node" is either misspelled or could not be found. To my project: node v: v22.11.0 npm v: 10.9.0 react: ^...
JoF's user avatar
  • 43
-1 votes
1 answer
748 views

In my react project want to start production environment through .env config port. This is my .env file: PORT = 3001 APP_BE_IP = 127.0.0.1 APP_BE_PORT = 3333 ...
ArtBindu's user avatar
  • 2,038
0 votes
1 answer
128 views

I have a Svelte/TS project with an NPM script called "deploy" that uses gh-pages to commit the contents of my build/dist folder to a branch called gh-pages for automatic deploy on Github ...
Kauê Rodrigues's user avatar
2 votes
2 answers
550 views

I'm trying to use Angular's hot reloading by proxying my API layer to the the API URL. So I'm using a proxy.conf.json file at the root of my project, with the following contents. { "/accounts/...
commadelimited's user avatar
0 votes
1 answer
942 views

I have tried everything to run npm, installed and uninstalled node js various times still npm is not running while node js version is showing by using node -v , that is v20.18.0, but npm -v , gives ...
Abhay's user avatar
  • 1
0 votes
1 answer
396 views

I'm working on a GitHub Actions workflow that executes tests using an npm script defined in my package.json. However, I've noticed that some options seem to be ignored when passed in this context. For ...
iamwen1023's user avatar
2 votes
0 answers
65 views

I’m encountering an error when trying to compile my React project that uses the react-idle-timer package. The error points to an unexpected token in index.esm.js of react-idle-timer, specifically on ...
serenity8468's user avatar
-1 votes
1 answer
472 views

I'm trying to create a Symfony + React project, following the steps in the Symfony documentation. However, am unable to continue past npm install, as default npm commands such as npm run watch, npm ...
nimmbot's user avatar
0 votes
1 answer
165 views

Good day. The question is simple, how to pass flags/options to npm-run-script and read them using commander.js. Example: package.json { "scripts": { "start": "node index....
babinik's user avatar
  • 648
1 vote
3 answers
52 views

I have a .js file in my project that imports an NPM package and has 2 functions that use that package: //replacePaths.js import {replaceInFile} from 'replace-in-file'; async function replace() { ...
MeltingDog's user avatar
  • 15.8k
0 votes
1 answer
81 views

npm command running in project path Hello Developers, I am trying to run the node.js commands - npm start and setting up a project with firebase the help of this article. I have installed node.js ...
Chandray Murmu's user avatar
0 votes
1 answer
269 views

New to Node, trying to follow a basic tutorial to launch a web browser. I'm using WebStorm as my IDE with node v22.3.0 and npm v10.8.1 and both commands are recognized by the terminal. The scripts ...
klex52s's user avatar
  • 437
3 votes
3 answers
2k views

I'm learning how to create apps on Shopify and need some help. Whenever I run, npm run dev and click any key, it shows this even though I'm already logged in to Shopify. npm run dev > dev > ...
Jey-Es's user avatar
  • 53
-1 votes
1 answer
599 views

https://docs.nodebb.org/installing/os/ubuntu/ I am following the NodeBB documentation(link attached above) to setup nodeBB locally on my machine - However, I am stuck at "Installing nodeBB" ...
Pravallika Nakarikanti's user avatar
1 vote
0 answers
153 views

Please suggest below error for npm start PS C:\JsonServerSetup> npm start start json-server --watch db.json --port 8000 npm error code ENOENT npm error syscall spawn C:\Program Files\nodejs npm ...
Gaurav tyagi's user avatar
-2 votes
4 answers
1k views

There are two different situations where you run npm install: You run npm install in your project's root directory Someone added your module as a dependency of their own project and they run npm ...
ptvty's user avatar
  • 5,714
1 vote
1 answer
170 views

` PS F:\our company\Triyotech India\client> npm i npm ERR! code ENOENT npm ERR! syscall mkdir npm ERR! path \? npm ERR! errno -4058 npm ERR! enoent ENOENT: no such file or directory, mkdir '\?' npm ...
Sachin Pandey's user avatar
0 votes
0 answers
45 views

[email protected] move-public mv ./dist/* ../server/public 'mv' is not recognized as an internal or external command, operable program or batch file. I tried this "move-public": "move .\...
ABOAGYE SOLOMON's user avatar
0 votes
1 answer
506 views

My project is Angular. I have added a script line for running nx and nodemon commands inside of the package.json. The first command runs but the second one does not. If I stop the process and then the ...
Odilbek Utamuratov's user avatar
0 votes
1 answer
91 views

I am trying to convert my build of a JavaSript Outlook Add-In from webpack to parceljs. Mostly works, but fails on the configuration of the certificate for https. The webpack configuration used an npm ...
eekboom's user avatar
  • 5,872
0 votes
0 answers
666 views

I want users to be able to invoke npm run newpost <name> from the command line, which should result in the command hugo new blog/<name>.md being executed. So, e.g., my package.json file ...
John Deighan's user avatar
  • 4,641
0 votes
0 answers
26 views

Hello I am getting this error, I have tired almost everything from online source but nothing is working out, any help will be appreciated, thanks enter image description here Hello I am getting this ...
Aly's user avatar
  • 1
1 vote
1 answer
73 views

'CALL "C:\Program Files\nodejs\node.exe" "C:\Program Files\nodejs\node_modules\npm\bin\npm-cli.js" prefix -g' is not recognized as an internal or external command, operable program ...
Amulya Machhan's user avatar
0 votes
0 answers
945 views

I am facing next error in deploying storybook its monorepo which needs to publish some packages into nexus also deploy storybook but in deploying one of the service here is design it shows this error ...
Khassan Kambarov's user avatar
2 votes
1 answer
133 views

I'm using npm workspaces. So the app's structure is . +-- package.json -- packages +-- a | -- package.json -- b -- package.json The npm install script should be executed from ...
S Panfilov's user avatar
  • 17.7k
-1 votes
1 answer
423 views

i have downloaded a react template and wanted to customize it. i have put the node modules folder and when i run the npm run start command i get the following errors npm ERR! code ENOENT npm ERR! ...
Kevin Sirengo's user avatar
0 votes
0 answers
175 views

The hosting limited terminal commands, npm, sudo, spt and more not working, while laravel project needs "npm install && npm run dev", Is there a solution, even if it manaul ...
Abdulla Galaby's user avatar
-1 votes
2 answers
339 views

I was trying to push to git but my files were too large. Tried removing the node_modules folder and then running npm start but now I am getting this error: Invalid options object. Dev Server has been ...
Kam's user avatar
  • 1
1 vote
0 answers
419 views

export default async function Product({ params, }: { params: { slug: string | undefined }; }) { // uri to get single Product from backend const filteredData = pagedata.filter((elem) => elem....
Manideep Vaddepalli's user avatar
0 votes
0 answers
149 views

the button appears and it is styled using CSS, that is ok however onClick it does not call the script, that is my best guess, have been trying to make it happen with no luck I do not know if my script ...
Daavila1's user avatar
0 votes
1 answer
243 views

I built the follow Docker container FROM node:20-alpine as ember WORKDIR /usr/app COPY package*.json /usr/app/ RUN apk fix && \ apk --no-cache --update add git && \ npm clean-...
Raniere Silva's user avatar
0 votes
0 answers
75 views

Detailed Scenario Connect to internet(wifi) on PC(pop-os) Run an npm command - works fine Run another npm command - stuck on (⠂⠂⠂) ⠧ idealTree:gdtot_data: sill idealTree buildDeps Disconnect and ...
Akash Bansal's user avatar
0 votes
1 answer
590 views

I'm using playwright to run my e2e tests, and i've installed monocart-reporter https://www.npmjs.com/package/monocart-reporter#examples to try to add the "owner" tag for each test, so that ...
SomeoneLearning17's user avatar
1 vote
0 answers
2k views

I'm trying to make a bot that takes my credentials and checks the availability of visa interview appointments for my city's US consulate, but it's my first Javascript app and I'm running around like a ...
Guilherme Doherty Marques's user avatar
0 votes
1 answer
301 views

I want to run npm install for two different package.json in parallel or one after the other. I have two package.json in two different folders under the same project. One is for the front end and one ...
Patricio Vargas's user avatar
0 votes
0 answers
192 views

I am trying to pass a file name that has a space to npm script. For example, if the file name is "A B.text", when I try to run the following command npm start "A B.txt" in ...
ethan1999's user avatar
0 votes
0 answers
199 views

I'm a complete beginner at creating Chrome extensions. So far, I've been able to create a basic popup but when I try to add my content.ts file to add some functionality, it displays an error message ...
jpham658's user avatar
0 votes
2 answers
3k views

I'm looking for a way to execute function on fly, without saving compiled .js file I've tried tsx and ts-node, but they run the entire module, so logic has to be in a IIFE way: (() => { // ... })(...
Mero's user avatar
  • 773
0 votes
1 answer
57 views

I have an installation script that installers a specific github repo and all of its requirements. this is the installer snipit that seems to be inconsistent: @echo off REM Check if Python 3.11 is ...
zfa- 2's user avatar
  • 3
1 vote
1 answer
446 views

So I have googled this, and tried everything I could think of / found suggested, but really not having any luck so thought I might need to ask for some help. I'm trying to deploy a React App to GitHub ...
djbowen95's user avatar
0 votes
2 answers
176 views

I was trying to create a new typescript-react project by using the command npx create-react-app todo-list --template typescript well the installation went well, but when I run the project with npm ...
ayex's user avatar
  • 542
0 votes
0 answers
763 views

npm ERR! code ENOENT npm ERR! syscall open npm ERR! path C:\Users\admin\OneDrive\Desktop\Dhenish\NEXTJS\package.json npm ERR! errno -4058 npm ERR! enoent Could not read package.json: Error: ENOENT: no ...
Dhenish Jivani's user avatar
2 votes
1 answer
140 views

I want to run a shell command, check its output and print the output as part of the error message if the output is not empty. To achieve this, I'm trying to use command substitution but for some ...
oschlueter's user avatar
  • 2,708
2 votes
0 answers
2k views

My project builds fine but I get these warnings during the compiler's operation: Building Angular Package (node:81809) Warning: Accessing non-existent property 'lineno' of module exports inside ...
js-newb's user avatar
  • 513

1
2 3 4 5
22