Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@labshare/lsc

Package Overview
Dependencies
Maintainers
19
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@labshare/lsc

Lab Share Command

  • 2.17.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
86
decreased by-25.22%
Maintainers
19
Weekly downloads
 
Created
Source

Coverage Status Build Status codecov

LSC

has all the code for CLI of LabShare. It is based on flatIron.

Install

npm i -g @labshare/lsc

Usage

Run lsc help to display a list of available commands.

App Templates

Run lsc create app to display a list of available templates.

  • api: API template powered by LoopBack and LabShare Services
  • ui: UI template powered by Angular and LabShare Services
  • cli: CLI template LabShare Services

You can also provide CLI arguments for a programmatic usage:

  • --name my-app-name
  • --description 'some description'
  • --type ui (can be ui, api, or cli)
  • -y (Bypass "continue?" question, useful for automated scripts)

Note: The command will add all the app's files. It is recommended to create a folder and execute the command inside that folder.

lsc Settings

To define the cliPattern and packageDependencies, you can use the lsc property at package.json

  "lsc": {
    "cliPattern": "dist/cli/*.js",
    "packageDependencies":[]
  },

In the example , lsc is reading the package's cli commands from the cliPattern directory, also is checking the packageDependencies from the same section.

Package Dependencies

The add commands from other cli's labShare packages, you will need to specify the packageDependenciesproperty at the package.json file. This property can be defined inside the lsc property or as a root property at the package.json file.

This is an array of all the projects which contains cli commands, for example:

   "packageDependencies": [
    "@labshare/services",
    "@labshare/lsc"
  ],

In the example , lsc is reading the package's cli commands from each module declared at packageDependencies,

Documentation

How to define new CLI commands for LSC

Working with package configuration files [Optional]

Tests

npm test

FAQs

Package last updated on 24 Mar 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc