Folder Structure

Ablepro Nodejs
└─ Admin
  β”œβ”€β”€ πŸ“ routes
  |   └──  routes.js
  β”œβ”€β”€ πŸ“ src
  |   └── πŸ“ assets
  |         β”œβ”€β”€  πŸ“  css
  |         β”œβ”€β”€  πŸ“  scss
  |         β”œβ”€β”€  πŸ“  fonts
  |         β”œβ”€β”€  πŸ“  images
  |         β”œβ”€β”€  πŸ“  js
  |         └──  πŸ“  json
  β”œβ”€β”€ πŸ“ views 
  |   β”œβ”€β”€ πŸ“ admins
  |   β”œβ”€β”€ πŸ“ application
  |   β”œβ”€β”€ πŸ“ chart
  |   β”œβ”€β”€ πŸ“ dashboard
  |   β”œβ”€β”€ πŸ“ demo
  |   β”œβ”€β”€ πŸ“ elements
  |   β”œβ”€β”€ πŸ“ forms
  |   β”œβ”€β”€ πŸ“ layouts
  |       └── πŸ“ component
  |   β”œβ”€β”€ πŸ“ other
  |   β”œβ”€β”€ πŸ“ pages
  |   β”œβ”€β”€ πŸ“ table
  |   β”œβ”€β”€ πŸ“ widget
  |   β”œβ”€β”€ index.ejs 
  |   β”œβ”€β”€ readme.html
  β”œβ”€β”€ .env
  β”œβ”€β”€ index.js
  β”œβ”€β”€ package.json
  β”œβ”€β”€ package-lock.json
  β”œβ”€β”€ package.json
  └── vite.config.js
└─ Starterkit
└─ Docs

Light Able NodeJs Folders Structure

File/FolderPathDescription

πŸ“ routes

routes/

All the routing file are here.

πŸ“ src

src/

All assets and scss and js is here If you change in these files you should run gulp command again.

πŸ“ views

views/

All Ejs templates are stored here.

Light Able NodeJs Views

FilePathDescription

πŸ—„index.ejs

views/index.ejs

Light Able Preview Page.

πŸ“admins

views/admins

All admins pages are here.

πŸ“ application

views/application

All application pages are here. Like Account Profile, Chat, eCommerce, Social Media etc.

πŸ“ chart

views/chart

All chart pages are here.

πŸ“ dashboard

views/chart

Dashboard page is here.

πŸ“ demo

views/chart

All the Demo pages here.

πŸ“ elements

views/elements

All the alerts, buttons, dropdowns, modals etc. elements files are here.

πŸ“ forms

views/forms

All the forms those are used in our kit are here.

πŸ“ layouts

views/layouts

All the layout pages like headers, sidebars, customizer and components are here.

πŸ“ other

views/other

You can all other pages here.

πŸ“ pages

views/pages

You can all authentication related pages here.

πŸ“ table

views/table

All tables used in kit are here.

πŸ“ widget

views/widget

All UI widget pages are here.

Last updated