Where are Postman collections saved?

2019-02-21 10:13发布

问题:

Where does the standalone Postman client for Windows save collections when working offline?

To clarify, I want to find where Postman saves collection files to by default when online syncing is disabled. I am not trying to export my collection as a JSON file.

I've looked in %LocalAppData%, My Documents, and Program Files, but I don't see where Postman saves its collection data.

回答1:

It looks like Postman uses LevelDB. On Windows, I found my Postman DB located at:

C:\Users\xxxx\AppData\Roaming\Postman\IndexedDB\

According to Piere F, macOS users can find it under:

~/Library/Application Support/Postman/IndexedDB


回答2:

Postman is using Google Chrome offline storage capabilities because at the end it's a SPA running inside Chrome (Electron technology).

From Postman's top menubar:

  • Select View → Show Dev Tools
  • Select the Application tab
  • In the sidebar, open Storage → IndexedDB → postman - file:// → collection_requests


标签: postman