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

@seashell/cli

v1.0.0-rc1

Published

CLI for managing Seashell apps and devices from the command line.

Downloads

4

Readme

Seashell CLI

The Seashell CLI is used to manage Seashell apps and devices from the command line.

It is built using the amazing oclif framework made available by Heroku.

To learn more about Seashell see https://seashell.sh

Overview

This is the first version of Seashell's CLI. It is uses Node under-the-hood, and has Docker as its only dependency.

Issues

For problems directly related to the CLI, add an issue on GitHub.

Usage

$ npm install -g @seashell/cli
$ seashell COMMAND
running command...
$ seashell (-v|--version|version)
@seashell/cli/0.0.4-rc4 linux-x64 node-v10.9.0
$ seashell --help [COMMAND]
USAGE
  $ seashell COMMAND
...

Commands

seashell build

Build and app for release

USAGE
  $ seashell build

DESCRIPTION
  ...
  Extra documentation goes here

See code: src/commands/build.js

seashell help [COMMAND]

display help for seashell

USAGE
  $ seashell help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

seashell init NAME

Initialize a Seashell application within the current directory

USAGE
  $ seashell init NAME

ARGUMENTS
  NAME  Application name, as defined within Seashell Cloud.

DESCRIPTION
  ...
  The current directory is assumed to be a valid Git repository

See code: src/commands/init.js

seashell login

Login to Seashell Cloud

USAGE
  $ seashell login

DESCRIPTION
  ...
  Extra documentation goes here

See code: src/commands/login.js

seashell release TAG

Submit an App release

USAGE
  $ seashell release TAG

ARGUMENTS
  TAG  Release tag.

DESCRIPTION
  ...
           The current directory correponds to an initialzied Seashell App

See code: src/commands/release.js

seashell services:add NAME [URL]

Add a service to a Seashell App

USAGE
  $ seashell services:add NAME [URL]

ARGUMENTS
  NAME  Service name.
  URL   Service's repository url

DESCRIPTION
  ...
  Extra documentation goes here

See code: src/commands/services/add.js

seashell services:build NAME VERSION

Add a service to a Seashell App

USAGE
  $ seashell services:build NAME VERSION

ARGUMENTS
  NAME     Service name.
  VERSION  Build version.

DESCRIPTION
  ...
  Extra documentation goes here

See code: src/commands/services/build.js

seashell services:delete NAME

Delete a service from a Seashell App

USAGE
  $ seashell services:delete NAME

ARGUMENTS
  NAME  Service name.

OPTIONS
  -y, --assume-yes  Automatic yes to prompt

DESCRIPTION
  ...
  Extra documentation goes here

See code: src/commands/services/delete.js

seashell services:release NAME IMAGE

Release a Seashell App service

USAGE
  $ seashell services:release NAME IMAGE

ARGUMENTS
  NAME   Service name.
  IMAGE  Service image.

DESCRIPTION
  ...
  Extra documentation goes here

See code: src/commands/services/release.js