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

bowtie-cli

v3.0.3

Published

a scaffolding cli for The Infinite Agency projects

Downloads

17

Readme

bowtie-cli

a cli for The Infinite Agency project scaffolding

Usage

$ npm install -g bowtie-cli
$ bowtie COMMAND
running command...
$ bowtie (-v|--version|version)
bowtie-cli/3.0.1 darwin-x64 node-v8.9.1
$ bowtie --help [COMMAND]
USAGE
  $ bowtie COMMAND
...

Commands

bowtie backup [DATABASE]

backup database of Wordpress site

USAGE
  $ bowtie backup [DATABASE]

ARGUMENTS
  DATABASE  [default: defined in wp-config.php] database name to export

OPTIONS
  -n, --filename=filename  [default: bowtie-{database}-{timestamp}.sql ] filename of sql export

See code: src/commands/backup.js

bowtie box ACTION HOSTNAME

create a new Vagrant box

USAGE
  $ bowtie box ACTION HOSTNAME

ARGUMENTS
  ACTION    [default: new] action to perform
  HOSTNAME  [default: bowtie-vagrant] hostname of site

OPTIONS
  -f, --force      overwrite existing site with hostname
  -n, --name=name  set Wordpress site name

See code: src/commands/box.js

bowtie config ACTION [PROPERTY] [VALUE]

bowtie configuration

USAGE
  $ bowtie config ACTION [PROPERTY] [VALUE]

ARGUMENTS
  ACTION    [default: get] action to perform
  PROPERTY  config property to perform action
  VALUE     value of property if setting

See code: src/commands/config.js

bowtie dart

get Dart Rail schedules

USAGE
  $ bowtie dart

See code: src/commands/dart.js

bowtie deploy ACTION

manage Buddy projects and trigger pipelines

USAGE
  $ bowtie deploy ACTION

ARGUMENTS
  ACTION  [default: pipeline]
          [status] get status of current project pipelines,
          [pipeline] execute a pipeline, use the -p flag to skip selection,
          [add] create a project from current repository

OPTIONS
  -p, --pipeline=pipeline  [default: select from list] pipeline name or id to execute
  -r, --revision=revision  [default: HEAD] revision id to deploy

See code: src/commands/deploy.js

bowtie express ACTION NAME

create a new bowtie-express project

USAGE
  $ bowtie express ACTION NAME

ARGUMENTS
  ACTION  [default: new] action to perform
  NAME    [default: bowtie-express] hyphenated name of project

OPTIONS
  -f, --force    overwrite existing site
  -i, --install  install packages

See code: src/commands/express.js

bowtie geo [ADDRESS]

geocode an address or csv to get coordinates

USAGE
  $ bowtie geo [ADDRESS]

ARGUMENTS
  ADDRESS  address to retrieve coordinates for

OPTIONS
  -s, --source=source  relative path to csv to geocode, must have headings: [address, city, state, zip_code]

See code: src/commands/geo.js

bowtie git ACTION

manage this project on Github

USAGE
  $ bowtie git ACTION

ARGUMENTS
  ACTION  [default: info] action to perform

See code: src/commands/git.js

bowtie help [COMMAND]

display help for bowtie

USAGE
  $ bowtie help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

bowtie restore [DATABASE]

restore database of Wordpress site

USAGE
  $ bowtie restore [DATABASE]

ARGUMENTS
  DATABASE  [default: defined in site wp-config.php] database name to restore to

OPTIONS
  -s, --source=source  relative path to sql file directory

See code: src/commands/restore.js

bowtie site HOSTNAME

create a new site in current Vagrant box

USAGE
  $ bowtie site HOSTNAME

ARGUMENTS
  HOSTNAME  [default: bowtie-vagrant] hostname of site, will add .test

OPTIONS
  -f, --force      overwrite existing site with domain
  -n, --name=name  set Wordpress site name

See code: src/commands/site.js

bowtie static ACTION NAME

create a new bowtie-static project

USAGE
  $ bowtie static ACTION NAME

ARGUMENTS
  ACTION  [default: new] action to perform
  NAME    [default: bowtie-static] hyphenated name of project

OPTIONS
  -f, --force    overwrite existing site
  -i, --install  install packages

See code: src/commands/static.js

bowtie update

update cli and Vagrant box

USAGE
  $ bowtie update

See code: src/commands/update.js