sfdx-login

0.0.6 • Public • Published

sfdx-login

Version CircleCI Appveyor CI Codecov Greenkeeper Known Vulnerabilities Downloads/week License

Install from source

  1. Install the SDFX CLI.

  2. Clone the repository: git clone git@github.com:lodossDev/sfdx-login.git

  3. (Yarn)Install npm modules: yarn install

  4. Link the plugin: sfdx plugins:link .

Install as plugin

  1. Install plugin: sfdx plugins:install sfdx-login
$ npm install -g sfdx-login
$ sfdx COMMAND
running command...
$ sfdx (-v|--version|version)
sfdx-login/0.0.6 darwin-x64 node-v8.12.0
$ sfdx --help [COMMAND]
USAGE
  $ sfdx COMMAND
...

sfdx force:auth:username:login

This command adds a simple login mechanism missing from sfdx.

USAGE
  $ sfdx force:auth:username:login

OPTIONS
  -c, --clientid=clientid                         The connected app client id.
  -k, --secret=secret                             The connected app secret key.
  -p, --password=password                         (required) Salesforce password+security token.

  -s, --server=server                             (required) [default: https://test.salesforce.com] The instance
                                                  endpoint i.e. loginUrl

  -u, --username=username                         (required) Salesforce username.

  --json                                          format output as json

  --loglevel=(trace|debug|info|warn|error|fatal)  logging level for this command invocation

EXAMPLE
  $ sfdx force:auth:username:login --username=lodoss118@saasforceltd.com 
                                             --password=xxxxxxxxxx
 
           Logged in as: lodoss118@saasforceltd.com (xxxxxxxxxxx)
           Organization: SAASFORCE LTD (xxxxxxxxxxx)

See code: src/commands/force/auth/username/login.ts

Debugging your plugin

We recommend using the Visual Studio Code (VS Code) IDE for your plugin development. Included in the .vscode directory of this plugin is a launch.json config file, which allows you to attach a debugger to the node process when running your commands.

To debug the sfdx force:auth:username:login command:

  1. Start the inspector

If you linked your plugin to the sfdx cli, call your command with the dev-suspend switch:

$ sfdx sfdx force:auth:username:login --dev-suspend

Alternatively, to call your command using the bin/run script, set the NODE_OPTIONS environment variable to --inspect-brk when starting the debugger:

$ NODE_OPTIONS=--inspect-brk bin/run force:auth:username:login
  1. Set some breakpoints in your command code
  2. Click on the Debug icon in the Activity Bar on the side of VS Code to open up the Debug view.
  3. In the upper left hand corner of VS Code, verify that the "Attach to Remote" launch configuration has been chosen.
  4. Hit the green play button to the left of the "Attach to Remote" launch configuration window. The debugger should now be suspended on the first line of the program.
  5. Hit the green play button at the top middle of VS Code (this play button will be to the right of the play button that you clicked in step #5).

    Congrats, you are debugging!

Readme

Keywords

Package Sidebar

Install

npm i sfdx-login

Weekly Downloads

9

Version

0.0.6

License

MIT

Unpacked Size

133 kB

Total Files

8

Last publish

Collaborators

  • lodoss118