Consuming Marvel API with nodeJs and Angular
To run this project, you will need to add the following environment variables to your .env file
MARVEL_PUBLIC_KEY
MARVEL_PRIVATE_KEY
Install the API project with
cd API
npm installRun to start nodemon server
npm installInstall the Angular project with
cd FrontEnd
npm installRun to lauch application in the browser
ng serve GET api/characters/ GET /api/characters/${id}| Parameter | Type | Description |
|---|---|---|
id |
string |
Required. Id of character to fetch |
GET /api/characters/${id}/comics| Parameter | Type | Description |
|---|---|---|
id |
string |
Required. Id of character to fetch |
Client: Angular, HTML, Scss
Server: Node, Express