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

imagelance-cli

v3.0.15

Published

Development stack for imagelance templates

Downloads

85

Readme

  _____                            _                                  _____ _      _____ 
 |_   _|                          | |                                / ____| |    |_   _|
   | |  _ __ ___   __ _  __ _  ___| | __ _ _ __   ___ ___   ______  | |    | |      | |  
   | | | '_ ` _ \ / _` |/ _` |/ _ \ |/ _` | '_ \ / __/ _ \ |______| | |    | |      | |  
  _| |_| | | | | | (_| | (_| |  __/ | (_| | | | | (_|  __/          | |____| |____ _| |_ 
 |_____|_| |_| |_|\__,_|\__, |\___|_|\__,_|_| |_|\___\___|           \_____|______|_____|
                         __/ |                                                           
                        |___/                                                            

Development tool for Imagelance templates

npm

Installation

We have 3 separate ways of installing the Imagelance CLI tool. Please select whichever you like.

1. Install with an Installer

2. Standalone installation with a Tarball

The standalone installation is a simple tarball with a binary. It contains its own node.js binary and autoupdates.

3. Install with npm/yarn

npm install -g imagelance-cli

or

yarn global add imagelance-cli

Getting started

  • Log in to your account $ lance login
  • Create directory structure $ lance install
  • Sync templates $ lance sync

List commands

$ lance help

Usage

$ npm install -g imagelance-cli
$ lance COMMAND
running command...
$ lance (--version)
imagelance-cli/3.0.15 darwin-arm64 node-v18.18.2
$ lance --help [COMMAND]
USAGE
  $ lance COMMAND
...

lance autocomplete [SHELL]

Display autocomplete installation instructions.

USAGE
  $ lance autocomplete [SHELL] [-r]

ARGUMENTS
  SHELL  (zsh|bash|powershell) Shell type

FLAGS
  -r, --refresh-cache  Refresh cache (ignores displaying instructions)

DESCRIPTION
  Display autocomplete installation instructions.

EXAMPLES
  $ lance autocomplete

  $ lance autocomplete bash

  $ lance autocomplete zsh

  $ lance autocomplete powershell

  $ lance autocomplete --refresh-cache

See code: @oclif/plugin-autocomplete

lance clone REPONAME

Clone existing template

USAGE
  $ lance clone REPONAME [-d]

FLAGS
  -d, --debug  Debug mode

DESCRIPTION
  Clone existing template

See code: src/commands/clone.ts

lance convert-pdf

Convert pdf to jpg

USAGE
  $ lance convert-pdf [-d]

FLAGS
  -d, --debug  Debug mode

DESCRIPTION
  Convert pdf to jpg

See code: src/commands/convert-pdf.ts

lance create

Creates new template

USAGE
  $ lance create [-d]

FLAGS
  -d, --debug  Debug mode

DESCRIPTION
  Creates new template

See code: src/commands/create.ts

lance dev

Run development server to create templates

USAGE
  $ lance dev [-d] [-l] [-n]

FLAGS
  -d, --debug   Debug mode
  -l, --latest  Start dev with latest edited template
  -n, --newest  Start dev with newly created template

DESCRIPTION
  Run development server to create templates

See code: src/commands/dev.ts

lance fetch

Fetch all local templates

USAGE
  $ lance fetch [-d]

FLAGS
  -d, --debug  Debug mode

DESCRIPTION
  Fetch all local templates

See code: src/commands/fetch.ts

lance help [COMMAND]

Display help for lance.

USAGE
  $ lance help [COMMAND...] [-n]

ARGUMENTS
  COMMAND...  Command to show help for.

FLAGS
  -n, --nested-commands  Include all nested commands in the output.

DESCRIPTION
  Display help for lance.

See code: @oclif/plugin-help

lance install

Set home directory for templates and prepare dev environment

USAGE
  $ lance install [-d]

FLAGS
  -d, --debug  Debug mode

DESCRIPTION
  Set home directory for templates and prepare dev environment

See code: src/commands/install.ts

lance login

Authorize CLI against web application

USAGE
  $ lance login [-d]

FLAGS
  -d, --debug  Debug mode

DESCRIPTION
  Authorize CLI against web application

See code: src/commands/login.ts

lance pull

Pull all local templates

USAGE
  $ lance pull [-d]

FLAGS
  -d, --debug  Debug mode

DESCRIPTION
  Pull all local templates

See code: src/commands/pull.ts

lance push

Push all local templates

USAGE
  $ lance push [-d]

FLAGS
  -d, --debug  Debug mode

DESCRIPTION
  Push all local templates

See code: src/commands/push.ts

lance status

Git status of all local templates

USAGE
  $ lance status [-d]

FLAGS
  -d, --debug  Debug mode

DESCRIPTION
  Git status of all local templates

See code: src/commands/status.ts

lance sync

Download all synced templates

USAGE
  $ lance sync [-d] [-s]

FLAGS
  -d, --debug    Debug mode
  -s, --shallow  Perform shallow fetch

DESCRIPTION
  Download all synced templates

See code: src/commands/sync.ts

lance update [CHANNEL]

update the lance CLI

USAGE
  $ lance update [CHANNEL] [-a] [--force] [-i | -v <value>]

FLAGS
  -a, --available        See available versions.
  -i, --interactive      Interactively select version to install. This is ignored if a channel is provided.
  -v, --version=<value>  Install a specific version.
      --force            Force a re-download of the requested version.

DESCRIPTION
  update the lance CLI

EXAMPLES
  Update to the stable channel:

    $ lance update stable

  Update to a specific version:

    $ lance update --version 1.0.0

  Interactively select version:

    $ lance update --interactive

  See available versions:

    $ lance update --available

See code: @oclif/plugin-update

lance validate

Validate the config and schema of all local templates

USAGE
  $ lance validate [-d]

FLAGS
  -d, --debug  Debug mode

DESCRIPTION
  Validate the config and schema of all local templates

See code: src/commands/validate.ts