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

@haribodev/aws-ec2-profiles

v3.1.3

Published

Centrally manage AWS and self managed instances and connect to them using SSH. Update security group ingress rules with your new public IP.

Downloads

2

Readme

@haribodev/aws-ec2-profiles

Version Downloads/week License

Usage

$ npm install -g @haribodev/aws-ec2-profiles
$ aep COMMAND
running command...
$ aep (-v|--version|version)
@haribodev/aws-ec2-profiles/3.1.3 linux-x64 node-v12.22.8
$ aep --help [COMMAND]
USAGE
  $ aep COMMAND
...

Commands

aep accounts [ACTION]

Display registered AWS accounts

USAGE
  $ aep accounts [ACTION]

ARGUMENTS
  ACTION  (add|remove|edit) Add, remove or edit an account

OPTIONS
  -d, --detail  Show extra account details

DESCRIPTION
  Display registered AWS accounts

See code: src/commands/accounts.js

aep configure

Configure the CLI

USAGE
  $ aep configure

DESCRIPTION
  Add accounts and customise the CLI tool. This command should be used after package updates.

See code: src/commands/configure.js

aep connect

Connect using SSH to an EC2 instance

USAGE
  $ aep connect

OPTIONS
  -a, --address=address      Instance Address
  -d, --directory=directory  Override pem file directory
  -i, --index=index          Instance index
  -k, --key=key              Override pem file name
  -n, --name=name            Instance name
  -p, --password             Ask for password
  -u, --username=username    Override connection username

DESCRIPTION
  Connect to an EC2 instance using either the instance index, name or address.
  Ability to override username and/or pem directory

See code: src/commands/connect.js

aep help [COMMAND]

display help for aep

USAGE
  $ aep help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

aep list

Display EC2 instances

USAGE
  $ aep list

OPTIONS
  -a, --account=account
      [default: all] Only get instances from a specific account(s)

  -m, --managed=aws|self
      [default: all] Only get instances under a specific management(s)

  -r, 
  --region=us-east-1|us-east-2|us-west-1|us-west-2|ap-south-1|ap-northeast-1|ap-northeast-2|ap-southeast-1|ap-southeast-
  2|ca-central-1|eu-central-1|eu-west-1|eu-west-2|eu-west-3|eu-north-1|sa-east-1
      [default: all] Only get instances in a specific region(s)

  -s, --state=pending|running|stopping|stopped|shutting-down|terminated
      [default: all] Only get instances of in a specific state(s)

DESCRIPTION
  Gathers up to date EC2 instance data and displays summaries in a table

See code: src/commands/list.js

aep servers [ACTION]

Register and degregister self managed servers

USAGE
  $ aep servers [ACTION]

ARGUMENTS
  ACTION  (add|remove|edit) Add, remove or edit a self managed server

DESCRIPTION
  Register and degregister self managed servers

See code: src/commands/servers.js

aep update

Update security groups with your new public IP

USAGE
  $ aep update

OPTIONS
  -f, --force=force
      Force change of a rule from one IP to another. This doesn't have to be your IP

  -r, 
  --region=us-east-1|us-east-2|us-west-1|us-west-2|ap-south-1|ap-northeast-1|ap-northeast-2|ap-southeast-1|ap-southeast-
  2|ca-central-1|eu-central-1|eu-west-1|eu-west-2|eu-west-3|eu-north-1|sa-east-1
      [default: all] Only update security groups in a specific region(s)

DESCRIPTION
  Checks if your public IP has changed and updates relevant AWS security groups

See code: src/commands/update.js