Skip to content
View just-leo's full-sized avatar
:octocat:
https://github.com/stop-war-in-ukraine/stop-russia-it
:octocat:
https://github.com/stop-war-in-ukraine/stop-russia-it
Block or Report

Block or report just-leo

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. nestjs-postgresql-starter nestjs-postgresql-starter Public template

    Starter template for NestJS app with TypeORM and PostgreSQL

    TypeScript

  2. Real world example of js Proxy usage Real world example of js Proxy usage
    1
    /**
    2
    * Makes some magic, for ex call like this
    3
    * api.postDonorAccount({id: 'ewqewq'}); -> leads to POST request to url: /donor/account with data: {id: '..'}
    4
    */
    5
    const { METHODS } = require('http');
  3. mqtt-broker mqtt-broker Public

    JavaScript

  4. ng-universal ng-universal Public

    TypeScript

  5. auto-install-environment auto-install-environment Public

    Bash script

    Shell

  6. Deep merge js objects Deep merge js objects
    1
    /**
    2
     * Merge obj2: object into target: object recursivelly including array properties
    3
     */
    4
    function deepMerge(target, obj2) {
    5
      Object.keys(obj2).forEach(key => {