Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.