This application lets you perform a live search for Airports and Cities through the Amadeus Airport & City Search API. The implementation is done through jQuery Autocomplete with Node and Express as the backend for which connects ot the Amadeus API
- In order to use the applicaiton you must obtain a valid API Key from Amadeus and paste it within App.js
clientId= 'id'
clientSecret= 'secret'
- Install dependencies
npm install
- Add your Amadeus credentials to the app.js file in this section:
var amadeus = new Amadeus({
clientId: '',
clientSecret: ''
});
- Start the server
node app.js
- Access over http://localhost:3000/
- Express.JS
- Node.JS
- jQuery