node开发过程中,可能想要启动服务之后,直接打开浏览器,方便开发。使用 opn 即可。
$ npm install opn
使用示例
const config = { port: 3000, }; const opn = require('opn'); opn(`http://localhost:${config.port}/`);
opn npm