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

@aspen.cloud/cmd-center

v0.0.3

Published

The Admin CLI tool for managing your Aspen space(s)

Downloads

4

Readme

@aspen.cloud/cmd-center

The Admin CLI tool for managing your Aspen space(s)

oclif Version Downloads/week License

Getting Started

  1. Add aspen via your favorite npm package manager
// yarn
$ yarn global add @aspen.cloud/cli

// npm
$ npm -g install @aspen.cloud/cli
  1. Register if you do not already have an account
$ aspen launch

Aspen's alpha is currently only available by invitation only, so you will need an access code. No invite, but really interested in using Aspen? Reach out to us (TODO email link).

  1. Login
$ aspen login

Usage

$ npm install -g @aspen.cloud/cmd-center
$ aspen COMMAND
running command...
$ aspen (-v|--version|version)
@aspen.cloud/cmd-center/0.0.3 linux-x64 node-v16.5.0
$ aspen --help [COMMAND]
USAGE
  $ aspen COMMAND
...

Commands

aspen add AGENT

add an agent to your PC

USAGE
  $ aspen add AGENT

ARGUMENTS
  AGENT  name of agent

See code: src/commands/add.ts

aspen dev:build [PROJECT_PATH]

build the deployment artifacts of your agent project

USAGE
  $ aspen dev:build [PROJECT_PATH]

ARGUMENTS
  PROJECT_PATH  [default: .] path to agent project

See code: src/commands/dev/build.ts

aspen dev:init [PROJECT_PATH]

initialize an Aspen agent project

USAGE
  $ aspen dev:init [PROJECT_PATH]

ARGUMENTS
  PROJECT_PATH  [default: .] path to agent project

OPTIONS
  -t, --template=javascript|typescript  initialize project from a template
  -y, --yes                             answer yes/default to all setup options

See code: src/commands/dev/init.ts

aspen dev:push [PROJECT_PATH]

deploy your project to your PC

USAGE
  $ aspen dev:push [PROJECT_PATH]

ARGUMENTS
  PROJECT_PATH  [default: .] path to agent project

See code: src/commands/dev/push.ts

aspen dev:watch [PROJECT_PATH]

watch your project for file changes and deploy project on changes

USAGE
  $ aspen dev:watch [PROJECT_PATH]

ARGUMENTS
  PROJECT_PATH  [default: .] path to agent project

See code: src/commands/dev/watch.ts

aspen help [COMMAND]

display help for aspen

USAGE
  $ aspen help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

aspen home

enter your PC

USAGE
  $ aspen home

See code: src/commands/home.ts

aspen invite [EMAIL]

manage and send Aspen invitations (if an EMAIL parameter is included, an invitation will be sent to that email address)

USAGE
  $ aspen invite [EMAIL]

ARGUMENTS
  EMAIL  Email of invitee

EXAMPLES
  $ aspen invite
  You have 3/5 invitations remaining
    
  Your invites:
  [email protected]: PENDING
  [email protected]: ACCEPTED

  $ aspen invite [email protected]
  Invite sent!

See code: src/commands/invite.ts

aspen launch

register your Aspen account

USAGE
  $ aspen launch

See code: src/commands/launch.ts

aspen login

authenticate with your PC

USAGE
  $ aspen login

See code: src/commands/login.ts

aspen logout

logout from your PC

USAGE
  $ aspen logout

See code: src/commands/logout.ts

aspen run AGENT COMMAND

run an action on an app written with Aspen

USAGE
  $ aspen run AGENT COMMAND

ARGUMENTS
  AGENT    Name of agent
  COMMAND  Name of command

OPTIONS
  -d, --data=data  Parameters passed to agent action.

EXAMPLE
  $ aspen run todos add -d "{note: 'Take out trash'}"

See code: src/commands/run.ts

aspen status

check the connection status of your PC

USAGE
  $ aspen status

See code: src/commands/status.ts

aspen whoami

print the currently authenticated user

USAGE
  $ aspen whoami

See code: src/commands/whoami.ts