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 🙏

© 2024 – Pkg Stats / Ryan Hefner

typeorm-markdown-generator

v1.0.5

Published

A tool to generate markdown documentation from TypeORM entities

Downloads

537

Readme

TypeORM Markdown Generator

Overview

This project was inspired by prisma-markdown.

The TypeORM Markdown Generator creates markdown documentation for TypeORM entities, featuring ERD diagrams, JSDoc descriptions, and organized content.

Features

  • Mermaid ERD Diagrams: Automatically generate entity-relationship diagrams (ERDs) for visual representation of your database schema.
  • JSDoc Comments: Extract and include JSDoc comments from your TypeORM entities for detailed descriptions.
  • Namespace Separations: Organize your documentation by namespaces using @namespace comments.

Example Output

Setup

Install Dependencies

To set up and use the TypeORM Markdown Documents Generator, follow these steps:

npm install --save-dev typeorm-markdown-generator

Configuration

Create a src/generate-erd.ts file with the following content:

// src/generate-erd.ts
import { DataSource } from "typeorm";
import { TypeormMarkdownGenerator } from "typeorm-markdown-generator";

const appDataSource = new DataSource({
  type: "postgres",
  host: "localhost",
  port: 5432,
  username: "your_username",
  password: "your_password",
  database: "your_database",
  // entities: [User, PostComment, Post, Category, Profile], or
  entities: [__dirname + "/entities/*.entity{.ts,.js}"],
});

const generateErd = async () => {
  try {
    const typeormMarkdown = new TypeormMarkdownGenerator(appDataSource, {
      entityPath: "src/entities/*.ts",
      title: "Postgres TypeORM Markdown",
      outFilePath: "docs/postgres-erd.md",
      indexTable: true,
    });
    await typeormMarkdown.build();
    console.log("Document generated successfully.");
  } catch (error) {
    console.error("Error generating document:", error);
  }
};

generateErd();

Explanation of the Configuration:

  • TypeORM DataSource Setting:

    • Use the same settings as in your application.
  • TypeormMarkdownGenerator Options:

    • entityPath: Path to your entity files, starting from the project root.
    • title?: Title of the generated document (default is "ERD").
    • outFilePath?: Path to save the generated markdown document, starting from the project root (default is "docs/ERD.md").
    • indexTable?: Whether to add the database indexes table to the markdown. (Only the indexes managed by the TypeORM entity are reflected, and the indexes created by the DB engine are not reflected, e.g., primary key index).

Notes The TypeormMarkdownGenerator internally sets the project root path to the location of the package.json file.

Compile

tsc

Run

node dist/generate-erd.js

Entity Naming Rule

The naming of the entities in the generated markdown follows these rules:

  • If an entity name is defined, the specified name is used.
@Entity("custom_entity_name")
export class CustomEntityName {
  //...
}
  • If an entity name is not defined, the entity class name is converted to snake_case and used as the entity name.
@Entity()
export class DefaultEntityName {
  //...
}
// will be converted to "default_entity_name"

Comment Tags

Use the following comment tags in your TypeORM entities to generate descriptive documentation:

  • /** */ : General JSDoc comments.
  • @namespace <name>: Both ERD and markdown content
  • @erd <name>: Only ERD.
  • @describe <name>: Only markdown content.
  • @hidden: Neither ERD nor markdown content.
  • @minitems 1: Mandatory relationship when 1: N (||---|{).

if @namespace, @erd, @describe, and @hidden are not defined, the entity will be placed in the Default namespace.

/**
 * Both description and ERD on User chatper.
 * Also, only ERD on Post and ShoppingMall chapters.
 * @namespace User
 * @erd Post
 * @erd ShoppingMall
 */
@Entity()
export class User {}

/**
 * Only description on User chapter.
 * @describe User
 */
@Entity()
export class Profile {}

/**
 * Only ERD on Post chapter.
 * @erd Post
 */
@Entity()
export class Comment {}

/**
 * Both description and ERD on ShoppingMall chatper.
 * @namespace ShoppingMall
 */
@Entity()
export class Order {
  /**
   * The tag "minItems 1" means mandatory relationship `||---|{`.
   * Otherwise, no tag means optional relationship `||---o{`.
   * @minitems 1
   */
  @OneToMany(() => OrderItem, (orderItem) => orderItem.order)
  orderItems!: OrderItem[];
}

/**
 * Never be shown.
 * @hidden
 */
@Entity()
export class Group {}

Example Entities