UNPKG

backend-smith

Version:

A CLI tool for automating backend component generation in Express.js, including modules, schemas, routes, services, and more.

6 lines (5 loc) 170 B
import path from "path"; export const getAbsolutePath = (module: string) => { const folderPath = path.join(process.cwd(), 'app', module); return folderPath }