Where is swagger cli on windows - npm-install

I just ran 'npm install -g swagger' on my Windows 8 box and it seems to have run successfully, but when I try and run the swagger CLI, as per https://www.npmjs.com/package/swagger, it doesn't know where it's at.
How do I get to that tool?

For windows 10 swagger gets installed as A NODE module under
C:\Users`your name`\AppData\Roaming\npm\node_modules\swagger
you will also see the following entries under :
C:\Users`your name`\AppData\Roaming\npm
- swagger.cmd
- swagger-project.cmd
hope this helps

Related

NuxtJS server not starting up on Windows 10

I installed NuxtJS v2.15.3 on my windows 10 system using NPM. When I try to run it using npm run dev using the integrated terminal of VSCode (also VSCodium), it just opens the nuxt.js file instead of running the server using the file.
I do not have any specific code to show here since it is just the default code we have as we run npm i nuxt. I found no way to tackle this as the same project ran perfectly on another Ubuntu machine. Any help is appreciated.
Main dependencies list:
nuxt: 2.15.3
bootstrap: 4.6.0
bootstrap-vue: 2.21.2
express: 4.17.1

cygwin and BQ CLI not working... "-bash: bq: command not found"

I'm trying to script the loading of some data into GCP using the command line interface and I'm having an issue with cygwin with what i believe is a not complete install of BQ CLI.
From a DOS prompt I'm able to successfully run commands and load data so I believe I have it installed correctly on my desktop, Windows 10 64bit.
Is there some additional installation required to get cygwin to work correctly with BQ CLI that isn't installed by default with cygwin?
Appreciate any assistance.
I found the problem I was having... I was attempting to execute BQ from the cli using 'bq' and not 'bq.cmd'...
Working fine now...

Yarn Installation error, View Storefront installation

While I am trying Install Vue Storefront in my windows 10 machine, it generate yarn installation issue.
Please refer the screenshot.
Vue storefront does not support direct Windows workflows.
please follow:
https://docs.vuestorefront.io/guide/installation/windows.html#requirements
to install vue-storefront on Windows. Docker is the only supported method for this.
To install Vue storefront on windows platform.
Please visit the once:
https://www.youtube.com/watch?v=zL_T3WzVLG0
Which already explains well, how to install and what needs to be installed in your window system.

Mobilefirst-8.0 Platform Using Eclipse Development

I am trying to put sample for MFP-8.0 Apps and i follow that below links & video,
https://mobilefirstplatform.ibmcloud.com/blog/2016/06/17/ibm-mobilefirst-studio-8-0-plugin-for-eclipse-now-available/
This is error message i got from eclipse console.
E:\POC\MFP-8.0\MFP\SampleTest\www>mfpdev app register --noprompt
E:\POC\MFP-8.0\MFP\SampleTest\www>exit
'mfpdev' is not recognized as an internal or external command,
operable program or batch file.
If anything i missed out for above the tutorial what else i have to do? kindly any one advice me.
System environment : Windows 8.1,Eclipse Mars, Java 1.8
Thanks
If it doesn't know what "mfpdev" is, it sounds like then that you do not have the MobileFirst CLI installed.
Make sure you have nodejs installed, then from command line run the following command: npm install -g mfpdev-cli, which will install the CLI.
The Studio plug-in relies on the CLI installed, since behind-the-scenes it calls CLI commands.

Installing Apache Cordova

I'm new to this of Apache Cordova. I'm trying to follow the documentation but cannot understand it very well. It says that for prerequisite I need to install the correspondant SDK. I did install Android Studio. then downloaded the Node.js and then tried to run the installation but it doesn't start I don't understand why it doesn't start. There is another things that I need to do so it starts installing?
Any help will be great. Thanks!
I think the clue is in the message -- just run the command npm install -g cordova from the normal DOS command prompt.
first of all you have to install 1)node.js 2)apache ANT 3) Java JDK & JRE 4) Android SDk & Eclipse and then after all installation you have to set this all software path into environmental- variable. and then fire your npm install -g cordova. without this all software installation and there path setup your phoneGap application will not created. and still you have any confusion and any question related software installation and there path setup then again tell me i will help you.
First and foremost, you want to install Node.js in order to get the 'npm' commands to work.
https://nodejs.org/download/release/latest/
You can download the latest version of Node.js from there... I was on a Mac, so I did the .pkg download. Install the appropriate one for your development machine.
After that, the 'npm' commands for Cordova will work. Hope this at least gets you started! :)