UNPKG

express-api-creator

Version:

Scaffold an Express.js boilerplate project. You can generate express.js boilerplate code with a single command.

18 lines (16 loc) 497 B
export const MCR = "MCR"; export const CREATE = "CREATE"; export const JAVASCRIPT = "JavaScript"; export const TYPESCRIPT = "TypeScript"; export const DEFAULT_PROJECT_NAME = "my-app"; export const PROJECT_NAME = "express-api-creator"; export const TEMPLATES = { [JAVASCRIPT]: { extension: "js", repoUrl: "https://github.com/Hari-Narayan/express-JS.git", }, [TYPESCRIPT]: { extension: "TS", repoUrl: "https://github.com/Hari-Narayan/express-TS.git", }, };