A library that simplifies Swagger integrations.
Перейти к файлу
Amar Zavery 133794b165 Merge branch 'master' of github.com:apigee-127/sway into regex 2017-09-14 15:56:38 -07:00
browser Update browser binaries and release notes for recent PRs 2017-09-13 10:08:50 -06:00
docs Fix TravisCI (and minor docs fix) 2017-07-07 22:29:55 -06:00
lib Merge branch 'master' of github.com:apigee-127/sway into regex 2017-09-14 15:56:38 -07:00
test allow missing optional params (#148) 2017-09-13 09:58:07 -06:00
.editorconfig
.eslintrc
.gitignore Do not version VS Code files 2016-12-22 20:15:11 -07:00
.travis.yml Fix TravisCI (and minor docs fix) 2017-07-07 22:29:55 -06:00
CONTRIBUTING.md
LICENSE
README.md Fix TravisCI (and minor docs fix) 2017-07-07 22:29:55 -06:00
RELEASE_NOTES.md Update browser binaries and release notes for recent PRs 2017-09-13 10:08:50 -06:00
bower.json Update dependencies 2017-07-07 22:20:31 -06:00
gulpfile.js Update dependencies 2017-07-07 22:20:31 -06:00
index.d.ts
index.js Update dependencies 2017-07-07 22:20:31 -06:00
package.json Update dependencies 2017-07-07 22:20:31 -06:00

README.md

A library that simplifies Swagger integrations. This library handles the minutiae of loading Swagger documents (local and remote), resolving references (local, remote), building an object model and providing you with a rich set of APIs for things like Swagger document validation, request/response validation, etc. For more details on the available APIs, please view the API Documentation.

Sway will always be built around the latest stable release of Swagger, which happens to be version 2.0 right now. This means that its APIs and object model will be specific to that version of Swagger and supporting any other versions of Swagger will require a conversion step prior to using Sway.

Project Badges

  • Build status: Build Status
  • Dependencies: Dependencies
  • Developer dependencies: Dev Dependencies
  • Downloads: NPM Downloads Per Month
  • Gitter: Join the chat at https://gitter.im/apigee-127/sway
  • License: License
  • Version: NPM Version

Installation

sway is available for both Node.js and the browser. Installation instructions for each environment are below.

Browser

Installation for browser applications can be done via Bower or by downloading a standalone binary.

Using Bower

bower install sway --save

Standalone Binaries

The standalone binaries come in two flavors:

Note: I realize these binaries are big and I'm working on making them smaller. Unfortunately, some of this is out of my control without rewriting some of the core features provided by third-party libraries currently contributing to the size issue.

Node.js

Installation for Node.js applications can be done via NPM.

npm install sway --save

Documentation

The documentation for this project can be found here: /docs/README

Of course, if you just want a quick link to the API documentation, that would be here:/docs/API.md

Contributing

This project uses Gulp for building so npm install -g gulp once you clone this project. Running gulp in the project root will lint check the source code and run the unit tests.