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

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]

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)