We have several front-end modules, all of which utilize a shared enterprise UI library. We needed a way to keep this shared library's dependency version in sync, therefore, we needed a way to programmatically pull the latest library package version f...
It's been a while since my lost post and since then I've moved far into the world of JavaScript development (primarily the React/Angular space). I just came across something I spent entirely too long on, which I definitely want to share in case someo...
Just wanted to post a quick JavaScript convert string to bytes function just for myself, but I figured someone else may find it useful: js function convertToBytes(str) { var bytes = []; for (var i = 0; i < str.length; ++i) { var charCode = st...
This is something I needed to get functioning for work. Luckily it wasn't so difficult--the hardest part was attempting to figure out why after I compiled Edge.js properly for NW.js v0.12.3 why it wouldn't actually attempt to load the native edge.nod...
This one really drove me insane. I recently discovered JavaScript MooTools library & it's UI component, MochaUI. MochaUI provides a powerful & easy-to-use library for developing rich internet applications (RIAs). My issue began after finding that the...