lsp-cli 0.1.6

Command-line tool for talking to Language Server Protocol (LSP) servers from the terminal.
1
2
3
4
5
import { buildSampleOrder } from "./order.js";
import { formatOrder } from "./report/formatter.js";

const order = buildSampleOrder();
console.log(formatOrder(order));