This module helps in opening explorer/finder in your OS programatically providing a very simple function to call.
npm install open-file-explorer --save
yarn add open-file-explorer
const openExplorer = require('open-file-explorer');
const path = 'C:\\Users';
openExplorer(path, err => {
if(err) {
console.log(err);
}
else {
//Do Something
}
});