news-app

A simple news web app using news API

MIT License

Stars
0

news-app

A simple news web app using news API

Requirements

  • NODE: >= 10

Setup For Back End in your Local Machine

# clone the project
git clone https://github.com/iamgkstack/news-app.git  && cd back-end

# install the dependencies
npm i

# start the project
npm start

# test
npm test
  • This starts the server on the port 5200

APIs availabe

Fetch all the latest news from UK

curl -X GET http://localhost:5200/api/v1/news

Setup for Front-End in your Local Machine

# go to front-end directory avialable in root folder(news-app )
cd front-end

# install the dependencies
npm i

# start the project
npm start

# test
npm test
  • This starts the client app on the port 3000