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.

37 lines
850 B

  1. npm-edit(1) -- Edit an installed package
  2. ========================================
  3. ## SYNOPSIS
  4. npm edit <pkg>[@<version>]
  5. ## DESCRIPTION
  6. Opens the package folder in the default editor (or whatever you've
  7. configured as the npm `editor` config -- see `npm-config(7)`.)
  8. After it has been edited, the package is rebuilt so as to pick up any
  9. changes in compiled packages.
  10. For instance, you can do `npm install connect` to install connect
  11. into your package, and then `npm edit connect` to make a few
  12. changes to your locally installed copy.
  13. ## CONFIGURATION
  14. ### editor
  15. * Default: `EDITOR` environment variable if set, or `"vi"` on Posix,
  16. or `"notepad"` on Windows.
  17. * Type: path
  18. The command to run for `npm edit` or `npm config edit`.
  19. ## SEE ALSO
  20. * npm-folders(5)
  21. * npm-explore(1)
  22. * npm-install(1)
  23. * npm-config(1)
  24. * npm-config(7)
  25. * npmrc(5)