Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aldy505/yaml-server
What's next after JSON? Hmm. Yaml maybe.
https://github.com/aldy505/yaml-server
Last synced: 17 days ago
JSON representation
What's next after JSON? Hmm. Yaml maybe.
- Host: GitHub
- URL: https://github.com/aldy505/yaml-server
- Owner: aldy505
- Created: 2021-07-16T14:26:10.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-07-16T14:27:02.000Z (over 3 years ago)
- Last Synced: 2024-10-12T16:11:26.134Z (about 1 month ago)
- Language: Vue
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# What's next after JSON? Hmm. Yaml maybe.
👆 That line above is an actual conversation. Then I began curious about it, and want to make it real. Here it is.
## How to run this
### Backend
```bash
# install dependencies
$ npm install# start the server
$ npm run start
```### Frontend
Please keep both Backend and Frontend running if you're trying this out.
```bash
# install dependencies
$ npm install# start dev server
$ npm run dev
```## Directory structure
```
.
├── client - Front end
│ ├── index.html - HTML entry point
│ ├── package-lock.json
│ ├── package.json
│ ├── public - Static directory
│ │ └── favicon.ico
│ ├── src
│ │ ├── App.vue - This is where you should look for.
│ │ └── main.js - App entry point
│ └── vite.config.js - Vite config
│
├── README.md - You are here
│
└── server - Backend
├── index.js - App entry point
├── package-lock.json
└── package.json
```## License
Do whatever you want with it.