UNPKG

@codingnexus/angular-structure-generator

Version:

A tool to generate Angular modules, components, services, and routing from a JSON structure.

12 lines (9 loc) 278 B
const { execSync } = require("child_process"); function executeCommand(command) { try { execSync(command, { stdio: "inherit" }); } catch (error) { console.error(`Command failed: ${command}\n${error.message}`); } } module.exports = { executeCommand };