Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 810 Bytes

File metadata and controls

29 lines (18 loc) · 810 Bytes

Node API Proxy Server

Server used for hiding API keys, rate limiting and caching. This uses the OpenWeather API but you can easily change it to whatever public API you are using

Usage

Install dependencies

npm install
npm run dev

Add public API info

Rename env_template to .env and edit the values

If the public API URL is https://api.openweathermap.org/data/2.5/weather?q={city}&appid={APIkey}

You can add on any other query params as needed when hitting the /api endpoint such as https://yourdomain/api?q=hubli without having to add your key in the client.