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.

45 lines
1.1 KiB

  1. npm-logout(1) -- Log out of the registry
  2. ========================================
  3. ## SYNOPSIS
  4. npm logout [--registry=<url>] [--scope=<@scope>]
  5. ## DESCRIPTION
  6. When logged into a registry that supports token-based authentication, tell the
  7. server to end this token's session. This will invalidate the token everywhere
  8. you're using it, not just for the current environment.
  9. When logged into a legacy registry that uses username and password authentication, this will
  10. clear the credentials in your user configuration. In this case, it will _only_ affect
  11. the current environment.
  12. If `--scope` is provided, this will find the credentials for the registry
  13. connected to that scope, if set.
  14. ## CONFIGURATION
  15. ### registry
  16. Default: https://registry.npmjs.org/
  17. The base URL of the npm package registry. If `scope` is also specified,
  18. it takes precedence.
  19. ### scope
  20. Default: The scope of your current project, if any, otherwise none.
  21. If specified, you will be logged out of the specified scope. See `npm-scope(7)`.
  22. npm logout --scope=@myco
  23. ## SEE ALSO
  24. * npm-adduser(1)
  25. * npm-registry(7)
  26. * npm-config(1)
  27. * npm-config(7)
  28. * npmrc(5)
  29. * npm-whoami(1)