Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 1.03 KB

File metadata and controls

44 lines (30 loc) · 1.03 KB

CLI Reference

The Link Loom CLI (@link-loom/cli) is the primary tool for scaffolding new services based on the official templates.

Installation

npm install -g @link-loom/cli

Commands

create

Creates a new project based on the Link Loom boilerplate (loom-svc-js).

Usage:

link-loom create --name [project-name]

Options:

Option Alias Type Description
--name -n string Required. The name of the project folder to create.
--help -h boolean Show help.

What it does:

  1. Downloads the latest loom-svc-js template.
  2. Replaces %LOOM% placeholders with your project name.
  3. Initializes a fresh git repository.
  4. Prepares the directory structure.

Example:

link-loom create --name payment-service
cd payment-service
npm install
npm run