Skip to content
View aziza-kasenova's full-sized avatar

Block or report aziza-kasenova

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. aws-lambda-mysql-connection aws-lambda-mysql-connection Public

    Example of a MySQL connection in AWS Lambda

    JavaScript

  2. aws-lambda-redis-connection aws-lambda-redis-connection Public

    An example of a Redis connection in AWS Lambda in Node.js

    JavaScript

  3. mysql-npm-disconnect.js mysql-npm-disconnect.js
    1
    static disconnect () {
    2
        ConnectionService.myConnection.destroy();
    3
        ConnectionService.myConnection = null;
    4
    
                  
    5
        instance = null;
  4. redis-npm-auth.js redis-npm-auth.js
    1
    /**
    2
     * @param {{ host: string, password:string }} param0
    3
     * @param {string} key
    4
     * @returns {Promise<string|Array<string>>}
    5
     */