Skip to content
This repository was archived by the owner on Jun 12, 2026. It is now read-only.

Repository files navigation

This repository has been archived and is no longer maintained.The code is provided for historical reference and may contain unpatched or unknown vulnerabilities. It should not be used in production systems.

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

Tests

npm test

About

LabShare Command: CLI interface for LabShare projects

Topics

Resources

Stars

3 stars

Watchers

12 watching

Forks

Releases

Packages

Used by

Contributors

Languages