You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Getting lost in all of the frameworks and opinions about development experience is a complete distraction from the actual work that needs to get done. Very often it is necessary to have a boilerplate stack that lays out some simple structure while enabling all the modern tooling needed to build awesome apps.
8
+
9
+
This stack is a goto for me to clone and use a baseline application to rapidly create applications.
10
+
11
+
## Getting Started
12
+
13
+
Since this is a Node project, you must run the following command after cloning the repo:
14
+
15
+
```bash
16
+
npm install
17
+
```
18
+
19
+
Once the project has been cloned, and the dependencies have been installed we can run the application.
20
+
21
+
```bash
22
+
npm run start
23
+
```
24
+
25
+
This will build the distro content and run the server. The configuration details, including port number, can be modified in the /config folder.
26
+
27
+
### What it do
28
+
29
+
- Use Vue3 compisition API approach with Vite
30
+
- Express routes for backend calls
31
+
- Websocket support with composables
32
+
- Base starter spot for rapidly prototyping
33
+
- Prettier and Husky for clean code
34
+
- Containerized with Docker for distro
35
+
36
+
### What it does NOT do
37
+
38
+
- Use a ton of dependencies or additional frameworks
39
+
- Production ready, this can be promoted to a production stack with additional security work
0 commit comments