https://github.com/vovanr/services-json
My list of services [UNDER CONSTRUCTION]
https://github.com/vovanr/services-json
Last synced: 3 months ago
JSON representation
My list of services [UNDER CONSTRUCTION]
- Host: GitHub
- URL: https://github.com/vovanr/services-json
- Owner: VovanR
- License: mit
- Created: 2019-05-31T07:06:38.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-08-01T20:43:04.000Z (almost 2 years ago)
- Last Synced: 2025-03-22T01:26:05.386Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://vovanr.github.io/services-json/dist/services.json
- Size: 39.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# services-json
> My services list
## Usage
```js
const SERVICES_JSON_URL = "https://vovanr.github.io/services-json/dist/services.json";
function fetchServicesJSON() {
return fetch(SERVICES_JSON_URL).then(resp => resp.json());
}
fetchServicesJSON()
.then(console.log)
//=> [{id: '', name: '', desc: '', ...}, ...]
```
## Schema
```json
[
{
"id": "string-cases",
"name": "String Cases",
"desc": "Convert variable name to various cases",
"href": "https://vovanr.github.io/string-cases",
"source": "https://github.com/VovanR/string-cases",
"date": "2019-04-01",
"icon": "/logo.svg",
"tags": [
"converter",
"development",
"text"
]
},
{
"id": "ruler",
"name": "Ruler",
"desc": "Portable screen ruler",
"href": "https://vovanr.github.io/ruler",
"source": "https://github.com/VovanR/ruler",
"date": "2018-07-25",
"icon": "/logo.svg",
"tags": [],
"disabled": true
}
]
```
## Build
```shell
npm run build
```
## License
MIT © [Vladimir Rodkin](https://github.com/VovanR)