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

https://github.com/codewars/tags

Tag definitions
https://github.com/codewars/tags

Last synced: 10 months ago
JSON representation

Tag definitions

Awesome Lists containing this project

README

          

# Tags

```typescript
type Tag = {
name: string;
type?: "keyword" | "topic" | "style" | "domain" | "package";
description?: string;
aliases?: string[];
featured?: boolean;
icon?: string;
};
```