All Projects → postmanlabs → Postman Docs

postmanlabs / Postman Docs

Licence: apache-2.0
Documentation for Postman, a collaboration platform for API development. Available for Mac, Windows and Linux.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Postman Docs

Postman Bdd
A BDD test framework for Postman and Newman
Stars: ✭ 139 (-40.85%)
Mutual labels:  api, postman
Curlx
◼️ Supercharge curl with history, collections and more.
Stars: ✭ 169 (-28.09%)
Mutual labels:  api, postman
Awesome Documentation Tools
🔥 📚 All the tools, processes and resources you need to create an awesome API & Project documentation
Stars: ✭ 138 (-41.28%)
Mutual labels:  api, documentation
Rocket Api
API敏捷开发框架,用于API接口功能的快速开发。不再定义Controller,Service,Dao,Mybatis,xml,Entity,VO等对象和方法.以springboot starter 形式集成使用
Stars: ✭ 122 (-48.09%)
Mutual labels:  api, postman
Hexo Theme Doc
A documentation theme for the Hexo blog framework
Stars: ✭ 222 (-5.53%)
Mutual labels:  api, documentation
Gatsby Starter Foundation
A starter to launch your blazing fast personal website and a blog, Built with Gatsby and Netlify CMS. Made with ❤ by Stackrole
Stars: ✭ 135 (-42.55%)
Mutual labels:  gatsbyjs, jamstack
Sentry Docs
The new place for the sentry documentation (and tools to build it)
Stars: ✭ 160 (-31.91%)
Mutual labels:  documentation, gatsbyjs
Wechatpay Postman Script
微信支付API v3的调试工具
Stars: ✭ 112 (-52.34%)
Mutual labels:  api, postman
Swagger2markup
A Swagger to AsciiDoc or Markdown converter to simplify the generation of an up-to-date RESTful API documentation by combining documentation that’s been hand-written with auto-generated API documentation.
Stars: ✭ 2,330 (+891.49%)
Mutual labels:  api, documentation
Api
API for Current cases and more stuff about COVID-19 and Influenza
Stars: ✭ 2,323 (+888.51%)
Mutual labels:  api, postman
L5 Swagger
OpenApi or Swagger integration to Laravel
Stars: ✭ 1,781 (+657.87%)
Mutual labels:  api, documentation
Openapi Codegen
OpenAPI 3.0 CodeGen plus Node.js minus the Java and emojis
Stars: ✭ 224 (-4.68%)
Mutual labels:  api, documentation
Docs
API Platform documentation
Stars: ✭ 119 (-49.36%)
Mutual labels:  api, documentation
App Talk
Let iOS apps talk - A user contributable directory of iOS apps with x-callback-urls.
Stars: ✭ 136 (-42.13%)
Mutual labels:  documentation, gatsbyjs
Pico8 Api
Unofficial PICO-8 API with a lovely design ! ::
Stars: ✭ 115 (-51.06%)
Mutual labels:  api, documentation
Jsdoc
An API documentation generator for JavaScript.
Stars: ✭ 12,555 (+5242.55%)
Mutual labels:  api, documentation
Covid 19 Apis
Postman COVID-19 API Resource Center—API collections to help in the COVID-19 fight.
Stars: ✭ 111 (-52.77%)
Mutual labels:  postman, gatsbyjs
Awesome Jamstack
📔 Curated list of resources: books, videos, articles, speaker decks, tools about using the JAMstack (A modern web development architecture for creating fast, secure and dynamic websites)
Stars: ✭ 115 (-51.06%)
Mutual labels:  api, jamstack
Vsphere Automation Sdk Rest
REST (Postman and JavaScript) samples and API reference documentation for vSphere using the VMware REST API
Stars: ✭ 182 (-22.55%)
Mutual labels:  postman, documentation
Spectaql
Autogenerate static GraphQL API documentation
Stars: ✭ 198 (-15.74%)
Mutual labels:  api, documentation

Postman logo

Postman Learning Center

Postman is the collaboration platform for API development. And the Postman Learning Center has the resources you need to ramp up quickly and extend your skills with Postman. Postman allows you to write API test cases in any format of your choice (JSON/XML/many more) and run them to verify and validate your API. Moreover, Postman provides collections which can improve a developer's workflow. Postman is available for several platforms including windows and Mac OS X. For more information visit the Postman website.

Contribution guidelines

We would love for you to contribute to the Learning Center! To contribute to this project, please read:

NOTE: We have added a new Markdown linter with GitHub Actions. When making a pull request, it will run against this linter. Your changed files are required to pass linting before they will be merged. More information on this can be found in the contribution guidelines.

To say thank you for your contribution, we’d love to send you exclusive Contributor swag. Fill out the Contributor Submission form and we’ll send you a token of our gratitude.

Build the Learning Center locally


   $ git clone https://github.com/postmanlabs/postman-docs.git
   $ cd postman-docs
   $ npm install
   $ npm install -g gatsby-cli
   $ npm run dev

NOTE: this site was build with node v12.11.0. We recommend installing and using nvm and setting your node version to v12.11.0.

Build using Docker

You can build the Learning Center and run it in a Docker container using the following dockerfile.

  1. Start by cloning the the repository

    git clone https://github.com/postmanlabs/postman-docs.git

  2. Create a file and name it "dockerfile" with the following contents

    
    FROM node:12
    
    EXPOSE 8000
    
    # copy the postman-docs project directory
    COPY postman-docs /var/postman-docs
    
    WORKDIR "/var/postman-docs"
    
    RUN npm install -g gatsby-cli
    RUN npm install --force
    
    CMD ["yarn", "dev", "-H", "0.0.0.0" ]
    
    

    The dockerfile should be in the same directory as the postman-docs directory

    
    # example directory structure
    |--[current folder]
       |--postman-docs
       |--dockerfile
    
    
  3. Build the Docker image with this command:

    $ docker build --tag postman-docs:1.0 .

  4. Start a container using the image

    $ docker run -p 8000:8000 -d postman-docs:1.0

Docker Compose

You can also build with docker-compose using the dockerfile above and this docker-compose.yaml


version: '3'
services:
  node:
    build:
      context: ./
    ports:
      - "8000:8000"

The docker-compose.yaml should be in the same directory as the postman-docs directory and dockerfile.


# example directory structure
|--[current folder]
   |--postman-docs
   |--dockerfile
   |--docker-compose.yaml

Start run the container with this command

$ docker-compose up

Project Structure

The built site will only host the most up-to-date docs. All legacy documentation is stored in github and excluded from build.

To update the docs

  • Posts are maintained under the /src/pages/docs folder.

  • The folder structure of /docs is the URL structure for posts. For example, /docs/postman/variables-and-environments/variables.md is mapped to URL https://learning.postman.com/docs/postman/variables-and-environments/variables/.

  • Links in the docs should be relative. Example:


   [Newman](/docs/postman/collection-runs/command-line-integration-with-newman/)

Resources

License

Apache License 2.0

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].