Skip to content
This repository has been archived by the owner on Sep 7, 2023. It is now read-only.

Latest commit

 

History

History
55 lines (43 loc) · 1.48 KB

README.md

File metadata and controls

55 lines (43 loc) · 1.48 KB

NewSum mobile

NewSum is a summarization application developed for getting summaries from various news sources.

This repository contains the code of the mobile application (build with Ionic framework). News are fetched by consuming a free SOAP service defined by SciFY.

Screeshots

How to build

This project was built using the following versions of nodejs and npm:

$ node -v
v8.9.1

$ npm -v
5.6.0

It is very easy to install multiple versions of nodejs and npm, by using Node Version Manager (nvm):

Install node v8.9.1

$ nvm install v8.9.1

Set node v8.9.1 as the default version

$ nvm alias default v8.9.1

Install project dependencies:

$ npm install -g ionic cordova
$ npm install

Execution

Run on browser:

$ ionic serve

Run on android emulator:

$ ionic cordova platform add android
$ ionic cordova emulate android