getting syntax error while executing yo command, here i have attached the output - syntax

click here to see yo command output highlighted and the error,
i tried to install yo using command
npm install -g yo
Please help to come out of this issue
node version is: v8.17.0
npm version is: 6.13.4
git version 2.33.0
Docker version 20.10.7, build f0df350

Related

npm installation error in laravel project

Hello i am using npm in my laravel project. i installed npm and when i command npm -v, i receive 5.0.0 . but when i try to npm run watch or npm run dev i get following error :
enter image description here
Please help me to resolve this problem. i searched too many in sites but didnt find a way to solve this...
Try updating node:
Windows OS
Get the stable installer in Node.js website
Linux OS
npm install n -g
n stable

Trying to run 'npm install --save-dev paraviewweb' on my machine, and I keep running into an error at canvas#1.6.11 install

There seems to be an issue with my windows build tools ( I already re-installed and updated it ) and I installed the gyp packages too. However Im currently stuck getting this error after trying to run the above command. What is the issue and how can I fix it?
npm config set msvs_version 2015 --global
npm install -g node-sass
running these commands in the directory solves this issue.
https://github.com/nodejs/node-gyp/issues/119#issuecomment-318609877
credit to this person.

docker build of the hyperledger fabric start kit fails on Mac OS X

I'm trying to install and build the Fabric Starter Kit for the Hyperledger Fabric on the Mac OS X following the instructions on http://hyperledger-fabric.readthedocs.io/en/latest/starter/fabric-starter-kit/.
I'm using the Dockerfile that is provided and when I run the next command to build the fabric starter kit it fails:
docker build -t hyperledger/fabric-starter-kit:latest .
I've made sure that I have the latest version of node and npm. When trying to build it fails and I first get the following error:
/bin/sh: 1: npm: not found
I know npm is installed under /usr/local/bin/npm. I first tried to modify the Dockerfile to add the full path to npm but did not work. I then tried to run the command from the Dockerfile manually
npm install hfc
This fails and generates the below error output. Can anyone help? What am I doing wrong?
node-pre-gyp install --fallback-to-build
node-pre-gyp ERR! Tried to download: https://storage.googleapis.com/grpc-precompiled-binaries/node/grpc/v1.0.0/node-v51-darwin-x64.tar.gz
node-pre-gyp ERR! Pre-built binaries not found for grpc#1.0.0 and node#7.1.0 (node-v51 ABI) (falling back to source compile with node-gyp)
xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance
xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance

ionic 2 start fails with error with the spawned command

have installed ionic 2 beta on windows 7
npm install -g ionic#beta
seems to install ok. it's 2.0.0-beta.25
when I try to create a project
ionic start test tabs --v2 --ts
it fails on the Installing npm packages ... bit with
Error with start undefined
Error Initializing app: There was an error with the spawned command: npminstall
There was an error with the spawned command: npminstall
would appreciate any help...
I too faced the similar problem. Revert to 2.0.0-beta.22 by running the following command:
npm install -g ionic#2.0.0-beta.22
Many people reporting this issue with 2.0.0-beta.25
For me the problem was in npm... After updating npm install -g npm it to v3.10 everything worked fine.
Updating NPM a Node.js worked for me on Windows:
Win 7, Prof
NPM version: 3.10.2
Node.js version: 4.4.6
Command ionic start test sidemenu --2 --ts worked like charm.
try this, it works for me
ionic start test tabs --v2 --skip-npm
cd test
npm install
it seems to be a bug of ionic or something else.
Recreating new app on same directory and with same name by overwriting the older works for me!

Phonegap installation error (npm)

I have been searching for a solution for two days now to setup Phonegap on my Windows 8.1
system without any success.
Whenever I try to install Phonegap through npm I get an error that I think has to do
with Cordova(-lib).
To install Phonegap I had to install Node.js (v0.10.28) on my system. After this I opened up Windows Powershell and issued the following command like instructed on the Phonegap website:
npm install -g phonegap
Output: (This is the only part of the error)
error notarget No compatible version found: cordova-lib#'lorinbeer/cordova-lib.git#configparser_module'
error notarget Valid install targets:
error notarget ["0.21.2","0.21.3"]
error notarget
error notarget This is most likely not a problem with npm itself.
error notarget In most cases you or one of your dependencies are requesting
error notarget a package version that doesn't exist.
I also tried installing just Cordova through the npm and then install Phonegap, but that
didn't solve anything either.
Running the Powershell with administrator rights also didn't help and tried solutions of other people who also had problems setting up Phonegap, but nothing works.
I really hope that someone could help me out here.
Thanks in advance.
Download the older version. I think there was a problem in the new one
npm install -g phonegap#3.4
I tried this and worked for me.
I had the same issue yesterday. If you check npm-debug.log, you'll notice that there is a permission issue ("Permission denied") when npm tries to access the cordova-lib git repository url. Actually, cordova-lib is a dependency for phonegap. So, it can't install it and I think that's why you get that error.
So, I tried this: install cordova-lib first then Phonegap. Yet, it still won't work; npm does not seem to check if cordova-lib is installed before trying to do it.
At this point, what I could do is to change the repository from which it retrieves cordova-lib. Here is the NPM install syntax:
npm install <tarball file>
npm install <tarball url>
npm install <folder>
npm install <pkg>
npm install <pkg>#<tag>
npm install <pkg>#<version>
npm install <pkg>#<version range>
This means I can install from a tar.gz file. Great! So, I just went to this page https://www.npmjs.org/package/phonegap to check the phonegap repository and performed these steps:
Download the zip of phonegap-cli repo (https://github.com/phonegap/phonegap-cli/archive/master.zip)
Unzip it
Open the package.json file and find the cordova-lib entry in dependencies (line 32)
Change the value to 0.21.3 which is the last version.
Recreate an archive of the folder to the tar.gz format
Open your CLI and run this command:
npm install -g path/to/archive/phonegap-cli-master.tar.gz
It should work now.
Hope that help!
I had a similar problem today too on Mac, even after Lorenzo said it should be all fine. Just running this:
sudo npm install -g phonegap
... produced loads of errors like this:
error: file ./objects/pack/pack-48c0ff4147fb7e8922546c4a857b98a1cb48e01f.pack is far too short to be a packfile
I combined Lorenzo and arpan shah's solutions:
sudo npm install -g phonegap#3.4
sudo npm cache clean
sudo npm update -g phone gap
... and it seemed to magically work.
Problem
We published with a dependency on a branch of cordova-lib. This fork appears unavailable when lots of requests are coming through (I think). One way or another, it's unreliable.
Changing the dependency to 0.21.3 will cause commands to fail, but will allow the install.
Solutions
update the 'cordova-lib' dependency to the npm published version '0.21.3'
**note, this will allow the install, but other phonegap commands will fail
wait for about 20 minutes, then npm update -g phonegap
testing an update to resolve this issue
further updates momentarily
update
We've pushed version 3.5.0-0.20.3 which should resolve this issue
$ npm update -g phonegap
if that doesn't work, try
$ npm cache clean
and reinstall phonegap
I tryed above comamnds npm cache clear and reinstall phoegap. It downloaded all libs but not command line scripts (phonegap command had still 3.4 as version). I found that better was to give command: npm install -g cordova (v 3.5)!

Resources