Skip to content

Instantly share code, notes, and snippets.

View joadr's full-sized avatar
🏠
Working from home

Joaquin Diaz joadr

🏠
Working from home
View GitHub Profile
@joadr
joadr / main.js
Last active November 19, 2020 02:42
insomnia-plugin-pathname
/**
* For an url like this: https://api.somewebsite.com/v1/some_path
* this will return /v1/some_path
*/
module.exports.templateTags = [{
name: 'pathname',
displayName: 'pathname',
description: 'pathname',
async run (context) {
@joadr
joadr / README.md
Last active June 29, 2024 09:00
Mikro-orm v5 to v6 migration script

Mikro-orm v5 to v6 migration script

We ran npm install and updated some dependencies, and found out that our nestjs projects that used v5 mikro-orm development project stopped working. We started getting depedency injection errors and looking around in the github issues some other people where having the same problems. The proposed solution in one of them was updating from v6 to v6.0.1

As we had not updated iu. It seems a dependency of @mikro-orm/nestjs package received a breaking change update with minor version bump. Resulting in breaking compatibility with v5 mikro-orm.