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 🙏

© 2025 – Pkg Stats / Ryan Hefner

typeorm-simple-history

v0.0.1

Published

Plug and play TypeORM entity history tracking

Downloads

2

Readme

TypeORM Simple History

Description

Plug and play TypeORM entity history tracking.

Install

npm install typeorm-simple-history

If you use Typescript enable experimentalDecorators flag inside your tsconfig file, otherwise for babel use one of the following plugins babel-plugin-transform-decorators-legacy or @babel/plugin-proposal-decorators.

Usage

As early as possible in your application, import and setup history module.

import { getRepository } from 'typeorm';
import { setup } from 'typeorm-simple-history';

// Run setup as early as possible
setup({ getRepository });

Register entity for tracking either by using @TrackHistory decorator or by calling trackHistory method. Now every time decorated entity updates library will automatically save model differences in the database.

import { Entity, PrimaryGeneratedColumn, Column, BeforeUpdate } from 'typeorm';
import { TrackHistory, trackHistory } from 'typeorm-simple-history';

@TrackHistory()
@Entity()
export class User {
  @PrimaryGeneratedColumn()
  id!: number;

  @Column()
  firstName!: string;

  @Column()
  lastName!: string;
}

// Or `trackEntityHistory` method instead of @TrackHistory decorator
trackHistory(User);

Register history entities and subscribers in TypeORM connection:

import { ConnectionOptions } from 'typeorm';
import { getEntities, getSubscribers } from 'typeorm-simple-history';

export const options: ConnectionOptions = {
  // ...
  entities: [Foo, Bar, ...getEntities()],
  subscribers: [FooSubscriber, ...getSubscribers()],
};

When accessing historyRepository use one of following methods:

import { getRepository } from 'typeorm';
import { getHistoryRepository, History } from 'typeorm-simple-history';

// Get history repository by using `getHistoryRepository`

const historyRepository = getHistoryRepository(User); // or
const historyRepository = getHistoryRepository<User>('user'); // or
const historyRepository = getHistoryRepository('user'); // Without TS support

// or with TypeORM's `getRepository`

const historyRepository = getRepository<History<User>>('user_history'); // or
const historyRepository = getRepository('user_history'); // Without TS support

Minimal example:

import { getRepository } from 'typeorm';
import { getHistoryRepository } from 'typeorm-simple-history';

try {
  const historyRepository = getHistoryRepository(User);
  const userHistory = await historyRepository.find({ where: { origin: req.params.id } });

  return userHistory;
} catch (err) {
  // ...
}

Response:

[
  {
    "id": 1,
    "diff": {
      "firstName": "Peter"
    },
    "historyDetails": null,
    "createdAt": "2022-04-29T14:35:05.645Z"
  },
  {
    "id": 2,
    "diff": {
      "firstName": "John",
      "lastName": "Stanbridge"
    },
    "historyDetails": null,
    "createdAt": "2022-04-29T14:35:19.633Z"
  },
  {
    "id": 3,
    "diff": {
      "lastName": "Wong"
    },
    "historyDetails": null,
    "createdAt": "2022-04-29T14:35:28.282Z"
  }
]

Example with provided hydrate utility:

import { getRepository } from 'typeorm';
import { getHistoryRepository, hydrate } from 'typeorm-simple-history';

try {
  const repository = getRepository(User);
  const historyRepository = getHistoryRepository(User);

  const user = await repository.findOne(req.params.id);
  const userHistory = await historyRepository.find({ where: { origin: user } });

  const response = hydrate(user, userHistory);
  return response;
} catch (err) {
  // ...
}

Response:

[
  {
    "originId": 1,
    "id": 1,
    "firstName": "Peter",
    "lastName": "Virtue",
    "historyDetails": null,
    "createdAt": "2022-04-29T14:35:05.645Z"
  },
  {
    "originId": 1,
    "id": 2,
    "firstName": "John",
    "lastName": "Stanbridge",
    "historyDetails": null,
    "createdAt": "2022-04-29T14:35:19.633Z"
  },
  {
    "originId": 1,
    "id": 33,
    "firstName": "John",
    "lastName": "Wong",
    "historyDetails": null,
    "createdAt": "2022-04-29T14:35:28.282Z"
  }
]

Example with additional properties:

import { getRepository } from 'typeorm';
import { cloneDeep, omit } from 'lodash';

// Library also supports additional JSON property `historyDetails` inside history entry.
// It can be used for storing interesting things like editor info.
// In order to store data to this property pass additional `historyDetails` object inside `data` parameter.

try {
  const repository = getRepository(User);
  const user = await this.repository.findOne(req.params.id);

  const data = omit<User, 'id'>(req.body, 'id');
  const newEntity = Object.assign(cloneDeep(user, data);
  await this.repository.save(newEntity, { data: { historyDetails: { editor: 'John Doe' } } });

  return true;
} catch (err) {
  // ...
}

Hydrated response would look like this:

[
  {
    "originId": 1,
    "id": 1,
    "firstName": "Peter",
    "lastName": "Virtue",
    "historyDetails": {
      "editor": "John Doe"
    },
    "createdAt": "2022-04-29T14:35:05.645Z"
  }
  // ...
]

Caveats

Library is currently only supporting relational databases.