Small web application which loads and displays the list of latest articles from National Geographic website using NewsAPI.
In order to launch the app, firstly you need to install the required npm packages. It can be done by the command:
npm install
To launch the app in development environment you need to use the command:
npm start
The app hosted on localhost will be displayed in the browser window. Development files are stored in the app
folder.
In order to generate app files for production build you need to use command:
npm run build
This will cause deletion of all contents of the dist
folder and will generate in this location minified and concatenated app files ready to be deployed.