DDayMrzindaynotes.hashnode.dev·Nov 28, 2021 · 2 min readERROR: Heroku cannot find MongoDB (yelpcamp on The Web Developer Bootcamp 2022)This may be of help for someone else, at this point almost every package and app that Colt used during the course have changed. So when deploying I ran with several errors. (don't know really if they have to be with that) First, remember to change th...00
DDayMrzindaynotes.hashnode.dev·Aug 31, 2021 · 4 min readWhat is Regex?Regexp or regex expressions: Regex stands for Regular Expressions It's used in any language Java, Javascript, PHP, Perl, and Python. It's powerful in searching and manipulating text strings, particularly in processing text files. Think of it as a p...01C
DDayMrzindaynotes.hashnode.dev·Aug 14, 2021 · 2 min readHow do I create an Express Router?Express Router As normally we do, create an Express application on your main JS file. const express = require('express'); const app = express(); app.listen(3000, () => { console.log('Serving app on localhost 3000') }) Now, suppose we have a f...00