I have just finished v. 2.0 of CryptoTracker. I have the backend server done, and putting the finishing touches on the front-end. Most of the functionality is there, but I’m still working on formatting. On the home page, I have a chart and graphs that rely on an api call to cryptocompare.com. Crypto price charting […]
Posts from July 2018
Killing Node Processes
If you are trying to start a server on a specific port and get an error saying the port is already in use, you can type “ps ax” in a bash terminal to get a list of process running. In this case I looked for the node processes. Then you simply type “kill” + the […]
Express Router – mergeParams
I spent the last two days trying to figure out why I couldn’t access my req.params in my Express.js router middleware. I finally figured it out! const router = express.Router({ mergeParams: true }); I needed to add { mergeParams: true } when I call the Router.
Warbler Project
I just finished the Warbler (Twitter-like app) project from the Colt Steele/Udemy Advanced Javascript Bootcamp. I did it so that I could learn enough about authentication and authorization to finish off my cryptotracker.pro site. I learned a lot, now it is just a matter of getting the crypto site running. I think it there is […]