Skip to content
View vipinrana's full-sized avatar
Block or Report

Block or report vipinrana

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
vipinrana/README.md
  • 👋 Hi, I’m Vipin Rana
  • 👀 I’m interested in javascript libraries and frameworks
  • 💞️ I’m looking to collaborate on javascript projects
  • 📫 Reach me at vipinrana06@gmail.com

Pinned

  1. measuring different execution time i... measuring different execution time in node js
    1
    const {performance} = require('perf_hooks');
    2
    
                  
    3
    // using hrtime API
    4
    const hrBefore = process.hrtime();
    5
    
                  
  2. Sparse Index in mongodb Sparse Index in mongodb
    1
    db.collection_name.insert([
    2
      {_id: 1, name: "John Doe", age: 25},
    3
      {_id: 2, name: "Foo Bar", age: 35},
    4
      {_id: 3, name: "Hello World"}
    5
    ]);
  3. netspeed-monitor netspeed-monitor Public

    An app to monitor the netspeed

    JavaScript 3

  4. javascript-questions javascript-questions Public

  5. Promise.race vs Promise.any Promise.race vs Promise.any
    1
    /*
    2
     * Promise.race will first settled either fulfilled or rejected from the iterable object
    3
     *
    4
     * Promise.any find the first fulfilled without concern of reject promise from the iterable object. 
    5
     * If all are rejected promise then it will result an AggregateError.