Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yooneskh/unified-frontend
https://github.com/yooneskh/unified-frontend
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/yooneskh/unified-frontend
- Owner: yooneskh
- Created: 2022-11-21T20:31:01.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-09-16T08:53:21.000Z (4 months ago)
- Last Synced: 2024-09-17T10:52:44.680Z (4 months ago)
- Language: Vue
- Size: 2.95 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Unified Frontend
This repository is a Started template for a SaaS application frontend. It is based on Nuxt 3 and Vue 3. This code havily uses the "Layers" feature of the Nuxt 3 to implement a Domain Driven Design approach.
The main feature of this template is its coupling with the [Unified Backend](https://github.com/yooneskh/unified-backend) to make administration of entities easier. Through the code in the `admin` domain and the `Meta` fields exposed by the `Unified Backend`, we have utilities to easily manage the applications entities. Things like `resource-explorer`, `resource-object-dialog` and etc.
Aside from the administration utilities, this template comes with
- HTTP Request Utilities
- Dialog System (In code)
- Form Management
- Toast Message Notification## Setup
Make sure to install the dependencies:
```bash
bun i
```## Development Server
Start the development server on `http://localhost:8080`:
```bash
bun serve
```## Production
Build the application for production in `SSR` mode:
```bash
bun run build
```Build the application in `SPA` mode.
```bash
bun run generate
```