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

https://github.com/toxe/react-axios

React Axios Example
https://github.com/toxe/react-axios

axios example react rest

Last synced: 3 months ago
JSON representation

React Axios Example

Awesome Lists containing this project

README

          

# React Axios Example

## Dependencies

- Axios
- JSON Server

```
npm install --save axios
npm install -g json-server
```

## Running JSON Server

```
json-server --watch ships.json --port 3001
```

## Running the application

```
npm start
```

### Building and running a production version

```
npm run build
serve -s build
```