Skip to content
View nzvtrk's full-sized avatar
💭
fine
💭
fine
Block or Report

Block or report nzvtrk

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 Loading

  1. Axios create/recreate cookie session... Axios create/recreate cookie session in node.js enviroment
    1
    /* Basic example of saving cookie using axios in node.js and session's recreation after expiration.
    2
     * We have to getting/saving cookie manually because WithCredential axios param use XHR and doesn't work in node.js
    3
     * Also, this example supports parallel request and send only one create session request.
    4
     * */
    5
    
    
  2. Memoized debounce using lodash for a... Memoized debounce using lodash for async fetching
    1
    import { debounce } from 'lodash';
    2
    import axios from 'axios';
    3
    
    
    4
    // or vanilla debounce
    5
    // const debounce = (func, timeOut) => { 
  3. Nest.js multi-stage build dockerfile... Nest.js multi-stage build dockerfile + docker-compose with postgres & migrations
    1
    FROM node:12.14.1-alpine AS build
    2
    
    
    3
    # If you have troubles with node-gyp use should install these dependencies 
    4
    RUN apk add g++ make python
    5