Real-time tweets for "whale-sized" cryptocurrency transactions using the sōshen and Twitter APIs.
- Live demo: https://twitter.com/soshenwhales
- Vote on the future of Crypto 🐳 Feed by following us here: https://twitter.com/soshenio
- Built using the blockchain API at https://soshen.io
Install Node v10.15.3 (via nvm)
- Assuming you already have Git, install nvm using one of the two options (directly from their GitHub README here):
cURL:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash
Wget:
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash
- Check if nvm was properly installed:
command -v nvm
Which should output nvm
. If you're getting a command not found
, and closing + reopening your terminal doesn't work, follow these steps here to troubleshoot.
- Download and install Node v10.15.3:
nvm install 10.15.3
- Close and reopen your terminal, then check if the proper node version was installed:
nvm run node --version
Which should output something like...
Running node v10.15.3 (npm v6.9.0)
v10.15.3
- Run
npm install
to install the app dependencies - Rename the .env.example file to .env, and set the environment variable values using your sōshen project's credentials and your Twitter developer account's API credentials
- Run
npm start
🚀