The Paw extension can be installed from the Paw extensions page.
If you would like to develop the extension, the following steps can be used to setup a development environment setup. You will need Paw installed.
First of all, clone this repository in any convenient location (e.g ~/Desktop
).
$ git clone https://github.com/apiaryio/Paw-APIBlueprintImporter.git
Install node
if needed (e.g. below using Homebrew):
$ brew install node
Install dependencies using npm
:
$ npm install
During development, build the Paw extension using:
$ npm run build
To install into the Paw Extension directory:
$ npm run install
Alternatively, use the watch
command to automatically build and install when a file has been modified:
$ npm run watch
Run the tests:
$ npm test
MIT License. See the LICENSE file.