The swagger
module is designed for Node.js and is available through npm.
Here's how you install with sudo
. If you do not wish to use sudo
, see Using npm without sudo below.
-
Open a terminal.
-
Run the install:
sudo npm install -g swagger
Note: sudo
may or may not be required with the -g
option depending on your configuration. If you do not use -g
, you may need to add the swagger/bin
directory to your PATH manually. On Unix-based machines
the bin directory will often be found here: /usr/local/lib/node_modules/swagger/bin
.
-
Open a terminal.
-
Run the install:
npm install -g swagger
If you don't want to use sudo to install swagger on your system, follow the instructions in this section.
By default npm will place 'global' modules installed with the -g
flag in /usr/local/lib/node_modules
using the default prefix of /usr/local
. Global executables would be placed in /usr/local/bin
using the same default prefix, thereby putting them on the default PATH in most cases. In order to write to both of these directories root permissions are required.
Many Node.js developers choose to use a different prefix such that they do not need to use root permissions to install modules using the -g
flag (rightfully so - you should always be wary about things that 'require root permissions'!). Using root permissions is effectively a shortcut. In order to use executables installed using a different prefix you need to add an element to your path.
- Set the 'prefix' for npm by using the following command (documented here: npm-config. This will create a file
~/.npmrc
that contains configuration information for npm.
npm set prefix ~/npm
-
Edit your
.bash_profile
or the appropriate shell initialization script to add~/npm
to yourPATH
by adding the following line (or placing the single line in the new file if it does not exist):PATH=~/npm/bin:$PATH
This will enable you to easily use executable scripts installed using
-g
through npm - both for swagger and for other tools as well!
###Configuring the default browser on Linux
On Linux platforms, you need to specify your browser path before using the Swagger editor.
-
Create or open the following file in a text editor:
~/.a127/config.js
-
Add the following contents to the file:
module.exports = { browser: ’the/path/to/your/browser' };