https://github.com/frenchbread/botslist-reactjs
Layout for listing bots (received via REST API endpoint) build with ReactJs
https://github.com/frenchbread/botslist-reactjs
Last synced: 7 months ago
JSON representation
Layout for listing bots (received via REST API endpoint) build with ReactJs
- Host: GitHub
- URL: https://github.com/frenchbread/botslist-reactjs
- Owner: frenchbread
- License: mit
- Created: 2020-06-11T16:08:02.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-06T04:36:41.000Z (almost 5 years ago)
- Last Synced: 2025-06-04T01:15:03.183Z (7 months ago)
- Language: JavaScript
- Size: 361 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# botslist-reactjs
> Layout for listing bots (received via REST API endpoint) build with ReactJs
## Add `.env.local` file OR env variable `REACT_APP_APIHOST`
```
REACT_APP_APIHOST=http://localhost:3030/botslist
```
### Endpoint response should have following format:
```
[
{
id: ,
name: ,
reg: ,
level: ,
link:
},
...
]
```
### Install dependencies
```
$ npm install
```
## Available Scripts
### To start in dev mode
```
$ npm run start
```
### To build
```
$ npm run build
```
### For other scripts check `package.json` or [Create React App](https://github.com/facebook/create-react-app).
> This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## LICENSE
> [MIT](https://github.com/frenchbread/botslist-reactjs/blob/master/LICENSE)