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

@dipjyotimetia/postmortem

v1.2.8

Published

Convert Postman collections to Mocha/Supertest tests

Readme

postmortem

License: MIT Node Version npm version

Convert Postman collections to complete Mocha/Supertest test frameworks automatically.

Features

  • 🔄 Complete Project Generation - Creates a full test framework with proper structure
  • 📁 Folder Structure Preservation - Maintains your Postman collection organization
  • 🧪 Modern Test Framework - Generates Mocha tests with Chai assertions and Supertest
  • 🔧 TypeScript Ready - Includes TypeScript configuration and type definitions
  • 🌍 Environment Support - Handles Postman environments and generates .env files

Installation

npm install -g @dipjyotimetia/postmortem

Or install locally:

npm install @dipjyotimetia/postmortem

Usage

Global Installation

postmortem -c ./my-collection.json -o ./test-output

Local Installation

npx @dipjyotimetia/postmortem -c ./my-collection.json -o ./test-output

Options

  • -c, --collection <path> - Path to Postman collection JSON file (required)
  • -o, --output <directory> - Output directory for generated test files (default: test-output)
  • -e, --environment <path> - Path to Postman environment JSON file (optional)
  • --flat - Generate all test files in output directory (ignore folder structure)
  • --no-setup - Skip creating setup.js and package.json files
  • --debug - Enable debug logging
  • --silent - Suppress console output

Programmatic Usage

const { PostmanConverter } = require('@dipjyotimetia/postmortem');

const converter = new PostmanConverter({
  outputDir: './my-tests',
  flatOutput: false,
  includeSetup: true,
  logLevel: 'info'
});

const collection = require('./my-collection.json');
const environment = require('./my-environment.json'); // optional

try {
  const results = await converter.processCollection(collection, environment);
  console.log(`Generated ${results.testCount} tests in ${results.outputDir}`);
} catch (error) {
  console.error('Conversion failed:', error.message);
}

Example

Input: Postman Collection

{
  "info": { "name": "My API Tests" },
  "item": [{
    "name": "Users API",
    "item": [{
      "name": "Get Users",
      "request": {
        "method": "GET", 
        "url": "{{baseUrl}}/users"
      },
      "event": [{
        "listen": "test",
        "script": {
          "exec": ["pm.test('Status is 200', () => pm.response.to.have.status(200));"]
        }
      }]
    }]
  }]
}

Output: Generated Test

const { request, expect } = require('../../setup');

describe('Users API', function() {
  describe('Get Users', function() {
    it('Status is 200', async function() {
      const response = await request.get('/users');
      expect(response.status).to.equal(200);
    });
  });
});

Development

This project uses npm workspaces to manage the CLI package and VSCode extension together:

# Install all dependencies (CLI + extension)
npm install

# Build all packages
npm run build

# Run all tests
npm run test:all

# Lint all packages
npm run lint

For more details, see WORKSPACE.md.

Contributing

We welcome contributions! Please see our CONTRIBUTING.md for details on how to get started.

License

This project is licensed under the MIT License - see the LICENSE file for details.