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 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.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse
m-esm/README.md

mohsen_esm

  • 📝 My Medium profile

  • 💬 Feel free to ask me about JS, Node.js, NestJS, MongoDB, GCP, Docker, Redis, WebSocket, CI/CD

  • 🔒 I have a step by step demo on how to do end to end encryption using javascript npmjs.com/e2db[DEMO]

Connect with me:

mohsen_esmm-esm1794263@mohsenes

Languages and Tools:

angularjsapachecordovaarduinobashbootstrapcanvasjschartjscsharpcss3dockerdotnetelasticsearchelectronexpressfirebasegcpgitgrafanagulpherokuhtml5javajavascriptjestkibanalinuxmaterializemochamongodbmssqlmysqlnextjsnginxnodejsnuxtjsphotoshoppostgresqlpostmanpuppeteerrabbitMQreactrealmredissasssqlitetypescriptvuejs

Pinned Loading

  1. shellops/shellops-apishellops/shellops-apiPublic

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

    TypeScript 19 4

  2. shellops/shellops-panelshellops/shellops-panelPublic

    Shellops Panel - Assists in managing Docker on your server.

    TypeScript 16 1

  3. e2dbe2dbPublic

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

    TypeScript 7 1

  4. socket-cluster-appsocket-cluster-appPublic

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

    TypeScript 18 10

  5. Check event loop health by checking ...Check event loop health by checking it's delay
    1
    2
    constinterval=1000;
    3
    constacceptableDelay=3;
    4
    letlastCheck=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
    varhttp=require("http");
    2
    varfs=require("fs");
    3
    varserver=http.createServer().listen(3000);
    4
    5
    server.on("request",function(req,res){