fmcord
fmcord copied to clipboard
🎶 Display your last.fm status as a Discord Rich Presence using the RPC API
fmcord 1.1.0
Display your current Last.FM song on Discord using the RPC API:

Dependencies
- NodeJS >=8
- npm (>=5)
- Discord
Setup
- Clone the repo
git clone https://github.com/69/fmcord.git - Install the modules
npm i - Open Discord
- Copy
config.json.exampletoconfig.json - Set your last.fm username in the
config.jsonfile - Start the RPC app
node app.js
Useful links
Troubleshooting
It says the song is being updated but it isn't being displayed on my profile?
- Go to Discord settings
- Go to "Games"
- Make sure "Display currently running game as a status message" is ticked
Invalid token function (or something similar)
- Make sure your node is updated, you need at LEAST version 8.0.0!
How to run in the background
- Install pm2
npm i pm2 -g - Start the app
pm2 start app.js --name="fmcord" - Use
pm2 log fmcordto view the logs - Restart the app using
pm2 restart fmcord - To stop it, run
pm2 stop fmcord