The simpel tabbed solution. We provide a nice and smart service for having info screens at your shop, flat or even a large screen on the freeway.
Currently consists of a Node Server with an Angular 2 Client. The client uses only a few of the provided API locations for now but will be extended.
Node and Angular 2 are required to run this app.
cd src/server
npm install
npm start
cd src/client
npm install
npm start
- open http://localhost:4200 in webbrowser
request type | location | payload | response |
---|---|---|---|
get | /data} | { } |{ data: any } |
||
get | /title/:id} | { id: string } |{ title: string } |
||
get | /board/:id | { id: string } |{ board: IBoard \| null } |
||
get | /boardlist | { } |{ boardInfos: IBoardInfo[] } |
IBoard {
title: string;
description: string;
imageURL: string;
}
IBoardInfo {
id: string;
title: string;
}