A simple command you can use to update your GitHub profile status.
npm install gh-status-updaterA simple command you can use to update your GitHub profile status.
Use the package manager npm to install gh-status-updater.
``bash`
npm install -g gh-status-updater
`bash
update-gh-status
# GitHub user-level access token (Only necessary on first run)
--token=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
# The message of the status
--message="Working from home"
# The emoji of the status
--emoji=🏡
`
`javascript
import updateGhStatus from "gh-status-updater";
await updateGhStatus("Working from home", "🏡", "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")
``
Please make sure to update tests as appropriate.