Project is to create an interface with the LastFM
API.
🌟DISCLAIMER: This project is not affiliated with LastFM🌟
In order to make api calls to LastFM
, an API account is required. After making an account, users should be presented with an API key
and a token
. You can create an API account on LastFM.
To leverage those authentication items, place them in a .env
file:
API_KEY=123456789
TOKEN=123456789
- Clone repo:
git clone https://github.com/chinjon/hearo.git
cd
intohearo
- Run
npm i
Tests have been set up using mocha
and nyc
for test coverage.
npm run test
- executes testsnpm run coverage
- executes tests with coverage report