Skip to content
View m-esm's full-sized avatar
β˜•
https://calendly.com/m-esm/coffee-chat
β˜•
https://calendly.com/m-esm/coffee-chat

Organizations

@serendip-cloud @Fittodeli @shellops
Block or Report

Block or report m-esm

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
m-esm/README.md

Pinned

  1. shellops/shellops-api shellops/shellops-api Public

    Shellops API ( NestJS ). Assists in managing Docker on your server.

    TypeScript 19 4

  2. shellops/shellops-panel shellops/shellops-panel Public

    Shellops Panel - Assists in managing Docker on your server.

    TypeScript 16 1

  3. e2db e2db Public

    Step by step demo to showcase how you can have e2e encryption for your database and files.

    TypeScript 7 1

  4. socket-cluster-app socket-cluster-app Public

    WebSocket cluster with NestJs and Redis. Repo for Medium article.

    TypeScript 16 10

  5. Check event loop health by checking ... Check event loop health by checking it's delay
    1
    
                  
    2
    const interval = 1000;
    3
    const acceptableDelay = 3;
    4
    let lastCheck = 0;
    5
    
                  
  6. Node.js sending and receiving file u... Node.js sending and receiving file using only 'http' and 'fs' module (no framework)
    1
    var http = require("http");
    2
    var fs = require("fs");
    3
    var server = http.createServer().listen(3000);
    4
    
                  
    5
    server.on("request", function(req, res) {