npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sfdx-devhub-pool

v1.1.0

Published

sfdx-devhub-pool ================

Downloads

53

Readme

sfdx-devhub-pool

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

sfdx-devhub-pool devhubpool:auth:jwt:grant -i <string> -f <filepath> -u <array> [-r <string>] [-a <array>] [--json] [--loglevel trace|debug|info|warn|error|fatal]

authorize pooled orgs using the JWT flow

USAGE
  $ sfdx-devhub-pool devhubpool:auth:jwt:grant -i <string> -f <filepath> -u <array> [-r <string>] [-a <array>] [--json] 
  [--loglevel trace|debug|info|warn|error|fatal]

OPTIONS
  -a, --setaliases=setaliases                     set aliases for the authenticated orgs
  -f, --jwtkeyfile=jwtkeyfile                     (required) path to a file containing the private key
  -i, --clientid=clientid                         (required) connected app consumer key
  -r, --instanceurl=instanceurl                   the login URL of the instance the org lives on
  -u, --usernames=usernames                       (required) username list for authentication
  --json                                          format output as json
  --loglevel=(trace|debug|info|warn|error|fatal)  [default: warn] logging level for this command invocation

EXAMPLES
  $ sfdx devhubpool:auth:jwt:grant -u [email protected],[email protected] -f keys/server.key -i CLIENT_ID
  $ sfdx devhubpool:auth:jwt:grant -u [email protected],[email protected] -f keys/server.key -i CLIENT_ID -a 
  hub01,hub02

See code: src/commands/devhubpool/auth/jwt/grant.ts

sfdx-devhub-pool devhubpool:org:create [-p <array>] [-f <filepath>] [-d <integer>] [-c] [-n] [-a <string>] [-s] [-w <integer>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal]

create a scratch org from pooled devhub orgs

USAGE
  $ sfdx-devhub-pool devhubpool:org:create [-p <array>] [-f <filepath>] [-d <integer>] [-c] [-n] [-a <string>] [-s] [-w 
  <integer>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal]

OPTIONS
  -a, --setalias=setalias                         set an alias for for the created scratch org
  -c, --noancestors                               do not include second-generation package ancestors in the scratch org
  -d, --durationdays=durationdays                 duration of the scratch org (in days) (default:7, min:1, max:30)
  -f, --definitionfile=definitionfile             path to a scratch org definition file
  -n, --nonamespace                               creates the scratch org with no namespace
  -p, --devhubpoolusernames=devhubpoolusernames   username or alias list for the pooled dev hub orgs
  -s, --setdefaultusername                        set the created org as the default username
  -u, --targetusername=targetusername             username or alias for the target org; overrides default target org
  -w, --wait=wait                                 the streaming client socket timeout (in minutes) (default:6, min:2)
  --apiversion=apiversion                         override the api version used for api requests made by this command
  --json                                          format output as json
  --loglevel=(trace|debug|info|warn|error|fatal)  [default: warn] logging level for this command invocation

EXAMPLES
  $ sfdx devhubpool:org:create -p [email protected],[email protected] -f config/enterprise-scratch-def.json 
  -a TestOrg1
  $ sfdx devhubpool:org:create -p [email protected],[email protected] -a MyDevOrg -s edition=Developer
  $ sfdx devhubpool:org:create -p [email protected],[email protected] -f config/enterprise-scratch-def.json 
  -a OrgWithOverrides [email protected]

See code: src/commands/devhubpool/org/create.ts