# @logline/cli

> oclif example Hello World CLI

Latest version **0.1.0** (published 2023-04-01) · MIT license · 0 weekly downloads

## Install

```sh
npm install @logline/cli
pnpm add @logline/cli
yarn add @logline/cli
bun add @logline/cli
```

Provides the command `logline`.

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2023-04-01 |
| First published | 2023-02-07 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Node | >=12.0.0 |
| Dependencies | 13 |
| Unpacked size | 33.1 KB |
| Known vulnerabilities | 0 (+4 in 2 direct dependencies) |
| Install scripts | no |
| Author | Stephen van Beek @stepbeekio |
| Maintainers | stepbeek |
| Keywords | oclif |

## Links

- npm: https://www.npmjs.com/package/@logline/cli
- Repository: https://github.com/HappyValleyIO/logline-cli
- Issues: https://github.com/HappyValleyIO/logline-cli/issues
- npm.io page: https://npm.io/package/@logline/cli

## Dependencies (13)

- [uuid](https://npm.io/package/uuid.md) ^9.0.0
- [luxon](https://npm.io/package/luxon.md) ^3.2.1
- [listr2](https://npm.io/package/listr2.md) ^5.0.7
- [enquirer](https://npm.io/package/enquirer.md) ^2.3.6
- [decompress](https://npm.io/package/decompress.md) ^4.2.1
- [@oclif/core](https://npm.io/package/@oclif/core.md) ^2
- [eventsource](https://npm.io/package/eventsource.md) ^2.0.2
- [@sentry/node](https://npm.io/package/@sentry/node.md) ^7.46.0
- [netrc-parser](https://npm.io/package/netrc-parser.md) ^3.1.6
- [node-libcurl](https://npm.io/package/node-libcurl.md) ^3.0.0
- [@types/decompress](https://npm.io/package/@types/decompress.md) ^4.2.4
- [@oclif/plugin-help](https://npm.io/package/@oclif/plugin-help.md) ^5
- [@oclif/plugin-plugins](https://npm.io/package/@oclif/plugin-plugins.md) ^2.2.2

## Alternatives

- [@salesforce/cli](https://npm.io/package/@salesforce/cli.md) — 389.7K weekly downloads
- [@mintlify/cli](https://npm.io/package/@mintlify/cli.md) — 208.9K weekly downloads
- [@grafana/e2e-selectors](https://npm.io/package/@grafana/e2e-selectors.md) — 128.7K weekly downloads
- [mintlify](https://npm.io/package/mintlify.md) — 112.0K weekly downloads
- [@intlayer/cli](https://npm.io/package/@intlayer/cli.md) — 22.8K weekly downloads

## Recent versions

- 0.1.0 (latest) — 2023-04-01
- 0.0.1 — 2023-02-07

## README

oclif-hello-world
=================

oclif example Hello World CLI

[![oclif](https://img.shields.io/badge/cli-oclif-brightgreen.svg)](https://oclif.io)
[![Version](https://img.shields.io/npm/v/oclif-hello-world.svg)](https://npmjs.org/package/oclif-hello-world)
[![CircleCI](https://circleci.com/gh/oclif/hello-world/tree/main.svg?style=shield)](https://circleci.com/gh/oclif/hello-world/tree/main)
[![Downloads/week](https://img.shields.io/npm/dw/oclif-hello-world.svg)](https://npmjs.org/package/oclif-hello-world)
[![License](https://img.shields.io/npm/l/oclif-hello-world.svg)](https://github.com/oclif/hello-world/blob/main/package.json)

<!-- toc -->
* [Usage](#usage)
* [Commands](#commands)
<!-- tocstop -->
# Usage
<!-- usage -->
```sh-session
$ npm install -g @logline/cli
$ logline COMMAND
running command...
$ logline (--version)
@logline/cli/0.1.0 darwin-arm64 node-v18.12.1
$ logline --help [COMMAND]
USAGE
  $ logline COMMAND
...
```
<!-- usagestop -->
# Commands
<!-- commands -->
* [`logline help [COMMANDS]`](#logline-help-commands)
* [`logline login`](#logline-login)
* [`logline plugins`](#logline-plugins)
* [`logline plugins:install PLUGIN...`](#logline-pluginsinstall-plugin)
* [`logline plugins:inspect PLUGIN...`](#logline-pluginsinspect-plugin)
* [`logline plugins:install PLUGIN...`](#logline-pluginsinstall-plugin-1)
* [`logline plugins:link PLUGIN`](#logline-pluginslink-plugin)
* [`logline plugins:uninstall PLUGIN...`](#logline-pluginsuninstall-plugin)
* [`logline plugins:uninstall PLUGIN...`](#logline-pluginsuninstall-plugin-1)
* [`logline plugins:uninstall PLUGIN...`](#logline-pluginsuninstall-plugin-2)
* [`logline plugins update`](#logline-plugins-update)
* [`logline services`](#logline-services)
* [`logline sync`](#logline-sync)
* [`logline tail`](#logline-tail)

## `logline help [COMMANDS]`

Display help for logline.

```
USAGE
  $ logline help [COMMANDS] [-n]

ARGUMENTS
  COMMANDS  Command to show help for.

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

DESCRIPTION
  Display help for logline.
```

_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.2.0/src/commands/help.ts)_

## `logline login`

Login and persist credentials to .netrc

```
USAGE
  $ logline login [-u <value>]

FLAGS
  -u, --user=<value>  Username of the user to login

DESCRIPTION
  Login and persist credentials to .netrc

EXAMPLES
  $ logline login

  $ logline login --user myusername

  $ logline login -u myusername
```

_See code: [dist/commands/login/index.ts](https://github.com/HappyValleyIO/logline-cli/blob/v0.1.0/dist/commands/login/index.ts)_

## `logline plugins`

List installed plugins.

```
USAGE
  $ logline plugins [--core]

FLAGS
  --core  Show core plugins.

DESCRIPTION
  List installed plugins.

EXAMPLES
  $ logline plugins
```

_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.2.2/src/commands/plugins/index.ts)_

## `logline plugins:install PLUGIN...`

Installs a plugin into the CLI.

```
USAGE
  $ logline plugins:install PLUGIN...

ARGUMENTS
  PLUGIN  Plugin to install.

FLAGS
  -f, --force    Run yarn install with force flag.
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Installs a plugin into the CLI.
  Can be installed from npm or a git url.

  Installation of a user-installed plugin will override a core plugin.

  e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
  will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
  the CLI without the need to patch and update the whole CLI.


ALIASES
  $ logline plugins add

EXAMPLES
  $ logline plugins:install myplugin 

  $ logline plugins:install https://github.com/someuser/someplugin

  $ logline plugins:install someuser/someplugin
```

## `logline plugins:inspect PLUGIN...`

Displays installation properties of a plugin.

```
USAGE
  $ logline plugins:inspect PLUGIN...

ARGUMENTS
  PLUGIN  [default: .] Plugin to inspect.

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Displays installation properties of a plugin.

EXAMPLES
  $ logline plugins:inspect myplugin
```

## `logline plugins:install PLUGIN...`

Installs a plugin into the CLI.

```
USAGE
  $ logline plugins:install PLUGIN...

ARGUMENTS
  PLUGIN  Plugin to install.

FLAGS
  -f, --force    Run yarn install with force flag.
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Installs a plugin into the CLI.
  Can be installed from npm or a git url.

  Installation of a user-installed plugin will override a core plugin.

  e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
  will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
  the CLI without the need to patch and update the whole CLI.


ALIASES
  $ logline plugins add

EXAMPLES
  $ logline plugins:install myplugin 

  $ logline plugins:install https://github.com/someuser/someplugin

  $ logline plugins:install someuser/someplugin
```

## `logline plugins:link PLUGIN`

Links a plugin into the CLI for development.

```
USAGE
  $ logline plugins:link PLUGIN

ARGUMENTS
  PATH  [default: .] path to plugin

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Links a plugin into the CLI for development.
  Installation of a linked plugin will override a user-installed or core plugin.

  e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
  command will override the user-installed or core plugin implementation. This is useful for development work.


EXAMPLES
  $ logline plugins:link myplugin
```

## `logline plugins:uninstall PLUGIN...`

Removes a plugin from the CLI.

```
USAGE
  $ logline plugins:uninstall PLUGIN...

ARGUMENTS
  PLUGIN  plugin to uninstall

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Removes a plugin from the CLI.

ALIASES
  $ logline plugins unlink
  $ logline plugins remove
```

## `logline plugins:uninstall PLUGIN...`

Removes a plugin from the CLI.

```
USAGE
  $ logline plugins:uninstall PLUGIN...

ARGUMENTS
  PLUGIN  plugin to uninstall

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Removes a plugin from the CLI.

ALIASES
  $ logline plugins unlink
  $ logline plugins remove
```

## `logline plugins:uninstall PLUGIN...`

Removes a plugin from the CLI.

```
USAGE
  $ logline plugins:uninstall PLUGIN...

ARGUMENTS
  PLUGIN  plugin to uninstall

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Removes a plugin from the CLI.

ALIASES
  $ logline plugins unlink
  $ logline plugins remove
```

## `logline plugins update`

Update installed plugins.

```
USAGE
  $ logline plugins update [-h] [-v]

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Update installed plugins.
```

## `logline services`

List services for this account

```
USAGE
  $ logline services [-v] [-t]

FLAGS
  -t, --trace    Output all the log data we can
  -v, --verbose  Log verbosely

DESCRIPTION
  List services for this account

EXAMPLES
  $ logline services

  $ logline services --verbose

  $ logline services -v
```

_See code: [dist/commands/services/index.ts](https://github.com/HappyValleyIO/logline-cli/blob/v0.1.0/dist/commands/services/index.ts)_

## `logline sync`

Sync a service for this account

```
USAGE
  $ logline sync [-d <value>] [-v] [-t]

FLAGS
  -d, --directory=<value>  [default: ./.logs] Directory to sync logs to
  -t, --trace              Output all the log data we can
  -v, --verbose            Log verbosely

DESCRIPTION
  Sync a service for this account

EXAMPLES
  $ logline sync

  $ logline sync --verbose

  $ logline sync -v
```

_See code: [dist/commands/sync/index.ts](https://github.com/HappyValleyIO/logline-cli/blob/v0.1.0/dist/commands/sync/index.ts)_

## `logline tail`

Tail a service for incoming logs

```
USAGE
  $ logline tail [-s <value>]

FLAGS
  -s, --service=<value>  Service to tail

DESCRIPTION
  Tail a service for incoming logs

EXAMPLES
  $ logline tail

  $ logline tail -s service

  $ logline tail --service service
```

_See code: [dist/commands/tail/index.ts](https://github.com/HappyValleyIO/logline-cli/blob/v0.1.0/dist/commands/tail/index.ts)_
<!-- commandsstop -->

---
_Source: https://npm.io/package/@logline/cli · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
