Skip to content

Files

Latest commit

71df660 · Nov 16, 2019

History

History
78 lines (53 loc) · 1.31 KB

README.md

File metadata and controls

78 lines (53 loc) · 1.31 KB

@solfege/cli

Command Line Interface of SolfegeJS

Installation

The bundle is included by default in SolfegeJS. You don't need to install it.

See SolfegeJS

Available commands

In order to expore commands, you need to create a console.js file:

const solfege = require("solfegejs");

// Initialize the application
let application = solfege.factory();

// Start the application
// The first 2 parameters are removed (node and the script)
application.start(process.argv.slice(2));

Expose a command

To expose a command, you have to create a service with a specific tag:

services:
    my_command:
        class: "Command/MyCommand"
        tags:
            - { name: "solfege.console.command" }

And your class must implement 2 methods (getName and execute):

module.exports = class MyCommand {
  getName() {
    return "my-command";
  }

  async execute(parameters, options) {
    console.log("My command executed");
  }
}

Now you can call your command like that:

node console.js my-command

Tests

You need to install peer dependencies first:

npm install --no-save @solfege/application

Then run the following command:

npm test