Skip to content
forked from opticdev/optic

Optic makes it easy to document your APIs, prevent breaking changes, and follow an API style-guide

License

Notifications You must be signed in to change notification settings

SeanKeenan-at/optic

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

GitHub Repo stars GitHub contributors npm license

Optic helps you ship a great API

Shipping an API is easy -- the REST is hard. We built Optic because every developer/team should be able to get the benefits of OpenAPI, without all the time/effort/costs.

πŸ“‹ Documentation for all your APIs ← write your API promises down

πŸ›‘ Prevent breaking changes from shipping ← keep your promises

βœ… Verify your API is working-as-designed (the OpenAPI and implementation are in sync) ← make sure the API works as-designed

🎨 Build a consistent API that follows your team's standards ← raise the quality of your API

npm install -g @useoptic/optic

Document your existing APIs in minutes

Use real API traffic to write your initial OpenAPI specification and correctly patch the spec whenever an API changes.

  1. Use the CLI to magically capture traffic optic oas capture https://api.github.com OR provide a HAR (HTTP Archive format).
  2. Then run optic oas verify to see a list of "Undocumented" endpoints. Optic is your API version control tool, like git for APIs. "Undocumented" endpoints are like "Untracked" files in git.
  3. Add operations one at a time or use --document all to document all of them at once

Documentation: Generate an OpenAPI from traffic

document-for-web.mp4

Read Documentation

Prevent breaking changes with API diffs

Breaking changes ruin your API consumer's days. Optic prevents breaking changes from reaching production with its accurate and robust OpenAPI diff. The diff command is built to work with Git workflows, and has full support for OpenAPI 3 & 3.1, $ref, and complex schema types like oneOf/allOf/anyOf.

optic diff openapi.yaml --base main --check

Documentation: Diff OpenAPI and Catch Breaking Changes

diff-openapi.mp4

Read Documentation

Verify your API is working-as-designed

With Optic you can verify your API behavior in CI and understand your team's API Test Coverage (the % of your API functionality your testing covered). If optic oas verify detects no diffs, and you have high API Coverage, you can be very confident your API is working as designed.

optic oas verify openapi.yml

Documentation: Verify your API works as designed

verify-api-behavior.mp4

Read Documentation

Build a consistent API that follows your team's standards

Optic makes it easy for everyone on your team to review API changes, and automate your API standards. It makes API linting usable and productive for developers on teams like Snyk because it raises the quality of the APIs without getting in the way of developers.

You can read about how Optic goes beyond simple API Linting.

Here is an example of a team's automated API standards:

ruleset:
  - breaking-changes # prevent all breaking changes
  - naming:  # Naming rules apply on added properties, but won't fail on legacy
      applies: added 
      pathComponents: camelCase
      requestHeaders: Capital-Param-Case
      queryParameters: Capital-Param-Case
  - examples: # Examples in the OpenAPI are required and must match the schemas
      require_request_examples: true
      require_response_examples: true
      require_parameter_examples: true    
api-review.mp4

Read Documentation


Community & Support

License

MIT

Contributors ✨

Thanks goes to these wonderful people (emoji key):

All Contributors


Aidan Cunniffe

πŸ“– πŸ’»

devdoshi

πŸ“– πŸ’»

Evan Mallory

πŸ“–

Jaap van Hardeveld

πŸ’» πŸ“–

Ronak Shah

πŸ’» πŸ“–

taraedits

πŸ“–

Lou Manglass

πŸ’» πŸ“–

Nate Meyer

πŸ’»

Tim Gates

πŸ“–

Matthew Hudson

πŸ“–

LaV

πŸ“–

Gaurav Nelson

πŸ“–

Ross Nordstrom

🎨 πŸ’» πŸ›

Kin Lane

πŸ€” πŸ–‹

Viljami Kuosmanen

πŸ€” πŸ–‹

Richard Crowley

πŸ”¬ πŸ€”

dnmtr

πŸ‘€

Tim Perry

πŸ’»

jordaniza

πŸ“–

Sandy Vanderbleek

πŸ“–

Dave Rolsky

πŸ“–

Baptiste Darthenay

πŸ“–

Alex Miller

πŸ“–

Joseph Shearer

πŸ’»

Ray Bejjani

πŸ“–

Adrien Brault

πŸ“–

Nicholas Lim

πŸ“– πŸ’»

Stephen Mizell

πŸ’» πŸ“–

Bojan ĐurΔ‘eviΔ‡

πŸ’»

Taras Mankovski

πŸ“–

Ikko Ashimine

πŸ“–

Mukesh

πŸ’»

Tony Knight

πŸ“–

Roger Dickey, Jr

πŸ“–

This project follows the all-contributors specification. Contributions of any kind welcome!

Telemetry

Optic collects telemetry which is used to help understand how to improve the product. For example, this usage data helps to debug issues and to prioritize features and improvements based on usage. The usage of our telemetry data falls under our privacy policy. While this information does help us build a great product, we understand that not everyone wants to share their usage data. If you would like to disable telemetry you can add an environment variable that will opt out of sending usage data:

OPTIC_TELEMETRY_LEVEL=off - disables telemetry (both usage, and error reporting) OPTIC_TELEMETRY_LEVEL=error - disables telemetry (only usage data is sent)

About

Optic makes it easy to document your APIs, prevent breaking changes, and follow an API style-guide

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 99.3%
  • Other 0.7%