Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
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.

44 lines
989 B

  1. npm-docs(1) -- Docs for a package in a web browser maybe
  2. ========================================================
  3. ## SYNOPSIS
  4. npm docs [<pkgname> [<pkgname> ...]]
  5. npm docs .
  6. npm home [<pkgname> [<pkgname> ...]]
  7. npm home .
  8. ## DESCRIPTION
  9. This command tries to guess at the likely location of a package's
  10. documentation URL, and then tries to open it using the `--browser`
  11. config param. You can pass multiple package names at once. If no
  12. package name is provided, it will search for a `package.json` in
  13. the current folder and use the `name` property.
  14. ## CONFIGURATION
  15. ### browser
  16. * Default: OS X: `"open"`, Windows: `"start"`, Others: `"xdg-open"`
  17. * Type: String
  18. The browser that is called by the `npm docs` command to open websites.
  19. ### registry
  20. * Default: https://registry.npmjs.org/
  21. * Type: url
  22. The base URL of the npm package registry.
  23. ## SEE ALSO
  24. * npm-view(1)
  25. * npm-publish(1)
  26. * npm-registry(7)
  27. * npm-config(1)
  28. * npm-config(7)
  29. * npmrc(5)
  30. * package.json(5)