IT events API powered by DOU.ua
Source: https://look-events-api.herokuapp.com
- meta info -
/
- list of events Event[] -
/events
- single event Event -
/events/:id
- places string[] -
/tags/places
- topics string[] -
/tags/places
type Event = {
id: number
title: string
description: string
image: string
link: string
price: string
places: string[]
topics: string[]
time: {
dates: string[]
raw: string
}
}
{
"id": 20317,
"title": "Data Science & Engineering Fest",
"description": "Будущее за данными. Однако наука о данных только начинает по-настоящему набирать обороты.",
"image": "https://s.dou.ua/CACHE/images/img/events/DATA_fest_logo_RGB/41bd00fde4f9c738c997ffedd6495674.png",
"link": "https://dou.ua/calendar/20317/",
"price": "от 110 USD",
"places": ["Киев"],
"topics": ["AI", "Data Science", "конференция"],
"time": {
"raw": "2 февраля 2019",
"dates": ["2019-02-01T22:00:00.000Z"]
}
}
NPM Scripts:
dev
: Starting server for developmenttest
: Run all tests
Commit messages should follow the Semantic Commit Messages format:
label(namespace): title
description
- label is one of the following:
🐞 bug
- bug fixes.⚡️ feature
- new features.🔍 test
- changes to tests infrastructure.♻️ refactoring
- code refactoring, styling, formatting etc.😒 chore
- just chores.📝 docs
- changes to docs.🔖 v0.0.0
- version tag.
- namespace is put in parenthesis after label and is optional.
- title is a brief summary of changes.
- description is optional, new-line separated from title and is in present tense.
Example:
fix(Page): fix page.pizza method
This patch fixes page.pizza so that it works with iframes. Fixes #123, Fixes #234