# render-command **Repository Path**: x-render-ydb/render-command ## Basic Information - **Project Name**: render-command - **Description**: 脚手架命令的抽象基类 - **Primary Language**: NodeJS - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-12-04 - **Last Updated**: 2023-12-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # render-command #### 介绍 脚手架命令的抽象基类 #### 安装教程 ```javascript npm i @x.render/render-command -S ``` #### 使用说明 ```javascript import { RenderCommand, CommandType } from "@x.render/render-command"; class InitCommand extends RenderCommand { constructor(strs: string, options: Record, cmd: CommandType) { super(strs, options, cmd); console.log(this.strs, this.options, this.cmd); } init() {} exec() {} } ```