Skip to content

syedmuhammadabid/currency-converter-fixerIO

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Currency Conversion in Angular 6

This repository is about currency conversion using fixer.io implemented on Angular 6

Tech

This project uses a following libraries to work properly:

And of course this itself is open source with a public repository on GitHub.

Installation

This requires Node.js v4+ to run.

Install the prerequisites.

$ npm install -g @angular/cli

Once ionic framework is installed then,

$ git clone https://github.com/syedmuhammadabid/currency-converter-fixerIO
$ cd currency-converter-fixerIO
$ npm install

Open project folder and then src/app/data.service.ts, in data.service.ts provide fixer.io API key,

  endpoint = "convert";
  access_key = "YOUR_FIXER.IO_API";
  baseURL = "http://data.fixer.io/api/";

and now just run,

$ ng serve

Development

Want to contribute? Great!