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

@flowcore/cli-plugin-data-core

v3.0.2

Published

A Flowcore CLI plugin for working with Data Cores in the Flowcore Platform

Downloads

327

Readme

Flowcore CLI Plugin - Data Core

A Flowcore CLI plugin for working with Data Cores in the Flowcore Platform

Version oclif Build and Release

Usage

$ npm install -g @flowcore/cli-plugin-data-core
$ data-core COMMAND
running command...
$ data-core (--version)
@flowcore/cli-plugin-data-core/2.1.0 darwin-arm64 node-v18.18.0
$ data-core --help [COMMAND]
USAGE
  $ data-core COMMAND
...

Commands

data-core data-core apply

Apply a manifest configuration for a Data Core to the Flowcore Platform

USAGE
  $ data-core data-core apply -f <value> [--profile <value>] [-n <value>] [-t <value>] [-y]

FLAGS
  -f, --file=<value>...  (required) file to apply
  -n, --name=<value>     name of the data core to apply
  -t, --tenant=<value>   tenant to apply the data core to, this is the org for your organization, it can be seen in the
                         url when accessing your organization
  -y, --yes              skip confirmation
      --profile=<value>  Specify the configuration profile to use

DESCRIPTION
  Apply a manifest configuration for a Data Core to the Flowcore Platform

EXAMPLES
  $ data-core data-core apply -t flowcore -f example.yaml

  $ data-core data-core apply -t flowcore -n data-core-name -f example.yaml

  $ cat <<EOF | data-core data-core apply -f -

See code: src/commands/data-core/apply.ts

data-core data-core generate event-type FLOWTYPE

add a event type to a data core manifest

USAGE
  $ data-core data-core generate event-type FLOWTYPE [--profile <value>] [-d <value>] [-f <value>] [-n <value>]

FLAGS
  -d, --description=<value>  description of the event type
  -f, --file=<value>         file to modify
  -n, --name=<value>         name of the event type to generate
      --profile=<value>      Specify the configuration profile to use

DESCRIPTION
  add a event type to a data core manifest

EXAMPLES
  $ data-core data-core generate event-type flow-type-name -n event-type-name

  $ data-core data-core generate event-type flow-type-name -n event-type-name -d "description of the event type"

  $ data-core data-core generate event-type flow-type-name -n event-type-name -d "description of the event type" -f example.yaml

See code: src/commands/data-core/generate/event-type.ts

data-core data-core generate flow-type

add a flow type to a data core manifest

USAGE
  $ data-core data-core generate flow-type [--profile <value>] [-d <value>] [-f <value>] [-n <value>]

FLAGS
  -d, --description=<value>  description of the flow type
  -f, --file=<value>         file to modify
  -n, --name=<value>         name of the flow type to generate
      --profile=<value>      Specify the configuration profile to use

DESCRIPTION
  add a flow type to a data core manifest

EXAMPLES
  $ data-core data-core generate flow-type -n flow-type-name

  $ data-core data-core generate flow-type -n flow-type-name -d "description of the flow type"

  $ data-core data-core generate flow-type -n flow-type-name -d "description of the flow type" -f example.yaml

See code: src/commands/data-core/generate/flow-type.ts

data-core data-core generate manifest

Generate a data core manifest

USAGE
  $ data-core data-core generate manifest -t <value> [--profile <value>] [-f <value>] [-n <value>] [-o] [--placeholder]

FLAGS
  -f, --file=<value>     file to apply
  -n, --name=<value>     name of the data core to generate
  -o, --overwrite        overwrite the existing data core
  -t, --tenant=<value>   (required) tenant to apply the data core to, this is the org for your organization, it can be
                         seen in the url when accessing your organization
      --placeholder      generate a placeholder manifest
      --profile=<value>  Specify the configuration profile to use

DESCRIPTION
  Generate a data core manifest

EXAMPLES
  $ data-core data-core generate manifest -t flowcore

  $ data-core data-core generate manifest -t flowcore --placeholder

  $ data-core data-core generate manifest -t flowcore -f example.yaml

  $ data-core data-core generate manifest -t flowcore -n data-core-name -f example.yaml

See code: src/commands/data-core/generate/manifest.ts