nodejs installation

By @fortunex2/5/2018howto

NodeJs installation can be tricky since there are way too many versions

  • its good idea to for a LTS (long term support version for serious projects)
  • for hobby projects, latest and greatest versions should be fine

installing a node version manager

curl -sL https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh -o install_nvm.sh
bash install_nvm.sh
nvm ls-remote
nvm install 8.9.4
nvm use 8.9.4

run .profile once & you are set!

Installing Steemfeed-js

git clone https://github.com/Someguy123/steemfeed-js.git
cd steemfeed-js

Now, edit the config.json file followed by:

npm install npm start

We will get and output similar to:

[email protected] start /home/username/steemfeed-js
node app.js publishnow

followed by:

5

comments