Tag: build tools

  • How to safeguard connection variables for a public repo

    Recently I ran into a challenge with a repo that I am actively building with. The repo houses the code for my Bedtime Checklist App, a small app I’ve built to aid in guiding distracted children thru bedtime in the evenings. If you’ve ever tried getting an overstimulated 5 year old to bed, you know…

  • How I resolved a reload issue with gulp and browserSync

    The gulp build for my small express app– now with react integrated for some components on the frontend– was running into a strange issue when making edits. I had set up the gulp process such that it reloaded at the end of a file watch, once that watch was triggered: As the code indicates, the…

  • How to avoid or resolve conflicts between nodemon and browserSync reloads

    When implementing node into my existing node app, I ran into an issue where jsx compilation reloads were hanging in the browser. This was specific to jsx only. I had a separate sass built that was reloading just fine. What I found was that there was a clash between my nodemon server reload and the…