Yes, it needs be independent otherwise it will update existing repo
git clone https://github.com/rosera/nd032-c2-functional-programming-with-javascript-starter.git
cd nd032-c2-functional-programming-with-javascript-starter
git checkout project
cd project
yarn
yarn start
const getImageOfTheDay(){
fetch (... :8080/apod)
}
NOTE: Change to valid NASA API key or DEMO_KEY
.
├── node_modules
├── package.json
├── src
├── .env
└── yarn.lock
In the env file add the API key
API_KEY=YOUR_API_KEY
yarn start


