📋 AddTableNameHtml

Open routes.js

Open Api/routes.js. Now you'll see two new commands in the VS Code Title Bar: AddTableName and AddTableNameHtml.

AddTableNameHtml (UI View)

Instead of typing manually, click AddTableNameHtml to open the interactive UI screen. Select your Table Name and Folder Name (e.g., Table: Bills, Folder: Bills), then click addTableName.

Result: Exactly the same scalable backend architecture is mapped out automatically.

📁 Generated Folder Structure

Project │ ├── Api │ ├── routes.js │ │ │ ├── Bills │ │ └── end-points.js │ │ │ ├── Doctors │ │ └── end-points.js │ │ │ └── Users │ └── end-points.js │ ├── Config │ └── Schemas │ ├── Data │ ├── app.js │ └── package.json

⚙️ Generated end-points.js Example

import express from "express"; const tableName = "Bills.json"; const tablePath = "Data/Bills.json"; const configPath = "Config/Schemas/Bills.json"; const router = express.Router(); export { router };

Support and links

Project links and the marketplace listing.

Resource Link
GitHub Repository https://github.com/keshavsoft/vs-code-ext-from-any-js
VS Code Marketplace View Extension Marketplace Listing
Node.js Express.js VS Code Extension Endpoint Generator JavaScript