npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

insomnia-to-postman

v1.0.7

Published

CLI tool to convert Insomnia collections to Postman format

Readme

Insomnia to Postman Converter

This project provides a simple way to convert Insomnia Collection files (YAML or JSON) into Postman v2.1.0 Collection JSON format. It maintains all request details including headers, body, authentication and other settings.

Features

  • Converts Insomnia YAML or JSON to Postman JSON format
  • Preserves request metadata, headers and body
  • Maintains folder structure and request organization
  • Supports authentication settings
  • Command-line interface (CLI) for easy usage

Installation

You can install the CLI globally using npm:

npm install -g insomnia-to-postman

Or using yarn:

yarn global add insomnia-to-postman

Or using pnpm:

pnpm add -g insomnia-to-postman

Usage

After installation, you can use the CLI in two ways:

  1. Using the global command:
insomnia-to-postman <input-file.yaml|input-file.json> [output-file.json]
  1. Using npx:
npx insomnia-to-postman <input-file.yaml|input-file.json> [output-file.json]

Examples:

# Convert YAML collection
insomnia-to-postman ./my-collection.yaml ./my-collection.postman_collection.json

# Convert JSON collection
insomnia-to-postman ./my-collection.json ./my-collection.postman_collection.json

If you don't specify an output file, the tool will automatically create one in the same directory as the input file with the .postman_collection.json extension.

Development

If you want to contribute or run the project locally:

  1. Clone this repository:
git clone https://github.com/igorfelipeduca/insomnia-to-postman.git
  1. Install dependencies:
yarn install
  1. Build the project:
yarn build
  1. For development with auto-reload:
yarn dev

Importing the Postman Collection

Once the conversion is complete, you can import the generated Postman collection:

  1. Open Postman
  2. Click on Import in the top-left corner
  3. Select Upload Files and choose your converted JSON file
  4. Click Import to add the collection to your workspace

Troubleshooting

If you encounter any issues:

  • Make sure your Insomnia collection file is valid (YAML or JSON)
  • Check that the input file path is correct
  • Ensure you have write permissions in the output directory
  • For global command issues, try reinstalling the package:
    npm uninstall -g insomnia-to-postman
    npm install -g insomnia-to-postman

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License.