open html file from npm script code example
Example 1: open html file in browser using package.json
"scripts": {
"view:cov": "cd coverage/lcov-report && index.html"
}
Example 2: open url with pacage.json
"scripts": {
"open": "start https://www.google.com/"
}