提交学习笔记专用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
397 B

  1. # default-browser
  2. > Get the default browser
  3. Works on macOS, Linux, and Windows.
  4. ## Install
  5. ```sh
  6. npm install default-browser
  7. ```
  8. ## Usage
  9. ```js
  10. import defaultBrowser from 'default-browser';
  11. console.log(await defaultBrowser());
  12. //=> {name: 'Safari', id: 'com.apple.Safari'}
  13. ```
  14. ## Related
  15. - [default-browser-cli](https://github.com/sindresorhus/default-browser-cli) - CLI for this package