This project is no longer active.
Tiny API - A Tiny API To Make Tiny APIs
- Quickly prototyping some front-end code and need a couple of endpoints to return some static JSON?
- Perhaps you're integrating a front-end with a back-end that doesn't have a test server?
- Maybe, you just want to see a website with a memorable user experience?
- Make an endpoint that returns static JSON in seconds with Tiny API
This repo is the front end code for https://tiny-api.dev. The Tiny API website was created with Create React App.
The code for the server can be found here.
Run npm i
or yarn install
The package scripts have been adjusted and assume you have a .env
file in the root directory.
Create a .env
file with the following variables:
REACT_APP_API_URL=http://localhost:8080
PORT=3000
To run the server, run npm run start
or yarn start