Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/multivacplatform/swagger-node
Swagger module for node.js
https://github.com/multivacplatform/swagger-node
javascript openapi-specification rest rest-api swagger swagger-api swagger-node
Last synced: about 1 month ago
JSON representation
Swagger module for node.js
- Host: GitHub
- URL: https://github.com/multivacplatform/swagger-node
- Owner: multivacplatform
- License: other
- Created: 2019-03-31T09:15:35.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-17T09:55:25.000Z (about 5 years ago)
- Last Synced: 2024-10-01T00:20:51.587Z (about 2 months ago)
- Topics: javascript, openapi-specification, rest, rest-api, swagger, swagger-api, swagger-node
- Language: JavaScript
- Homepage: http://swagger.io
- Size: 2.52 MB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# swagger-node
[![Build Status](https://travis-ci.org/multivacplatform/swagger-node.svg?branch=master)](https://travis-ci.org/multivacplatform/swagger-node)
[![NPM version](https://badge.fury.io/js/swagger-node.svg)](http://badge.fury.io/js/swagger-node)
[![Dependency Status](https://david-dm.org/multivacplatform/swagger-node/status.svg)](https://david-dm.org/multivacplatform/swagger-node)
[![devDependency Status](https://david-dm.org/multivacplatform/swagger-node/dev-status.svg)](https://david-dm.org/multivacplatform/swagger-node#info=devDependencies)The `swagger` module provides tools for designing and building Swagger-compliant APIs entirely in Node.js. It integrates with popular Node.js servers, including Express, Hapi, Restify, and Sails, as well as any Connect-based middleware. With `swagger`, you can specify, build, and test your API from the very beginning, on your laptop. It allows you to change and iterate your design without rewriting the logic of your implementation.
![alt text](./docs/images/overview2.png)
Remember, one great thing about this approach is that all of the Swagger validation logic is handled for you, and all of the routing logic is managed through the Swagger configuration. You don't have to code (or recode!) any of that stuff yourself.
## Your swagger API in five steps
### 1. Install the swagger module
Install using npm. For complete instructions, see the [install](./docs/install.md) page.
```bash
npm install -g swagger-node
```### 2. Create a new swagger project
Use the [CLI](./docs/cli.md) to create and manage projects. Learn more on the [quick start](./docs/quick-start.md) page.
```bash
swagger project create hello-world
```### 3. Design your API in the Swagger Editor
The interactive, browser-based [Swagger Editor](http://editor.swagger.io/) is built in. It provides Swagger 2.0 validation and endpoint routing, generates docs on the fly, and consumes easy-to-read YAML.
```bash
swagger project edit
```![screenshot of project editor](./docs/images/project-editor.png)
### 4. Write controller code in Node.js
Code your API's business logic in Node.js.
```js
function hello(req, res) {
var name = req.swagger.params.name.value || 'stranger';
var hello = util.format('Hello, %s!', name);
res.json({ "message": hello });
}
```If you look at the Swagger file in the editor (shown in step 3 above), the `x-swagger-router-controller` element (line 17 in the editor screenshot) specifies the name of the controller file associated with the `/hello` path. For example:
```yaml
paths:
/hello:
x-swagger-router-controller: hello_world
```Controller source code is always placed in `./api/controllers`. So, the controller source file for this project is `./api/controllers/hello_world.js`.
The `operationId` element specifies which controller function to call. In this case (line 19), it is a function called `hello`. Learn [more](./docs/controllers.md).
### 5. Run the server
Run the project server.
```bash
swagger project start
```## Now, call the API
It just works!
```bash
$ curl http://127.0.0.1:10010/hello?name=Scott
{ "message": "Hello, Scott!" }
```## Installing the swagger module
See the [Installing swagger](./docs/install.md) for details.
Go to the [swagger module doc page](./docs/README.md). It includes all the information you need to get started.
This initiative grew out of Apigee-127, an API design-first development framework using Swagger.
Apigee donated the code to create the swagger-node project in 2015.>Copyright 2016 Apigee Corporation
>Licensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.
You may obtain a copy of the License at>http://www.apache.org/licenses/LICENSE-2.0
>Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.---