JSFiddle - React, Tailwind, and code Playground

JavaScript

//core hutber.js 
window.hutber = {}; // Explicit Global Variable
    
(function ($) {
    "use strict"; //For good development standards :)
    
    window.hutber.init = function(){
      alert('init fired');  
    };
    
    window.hutber.init();
})(jQuery);

//Extra bits hutber.form.js
(function ($) {
    "use strict"; //For good development standards :)
    window.hutber.form = {prop: "hello im a form"}
    alert('window.hutber.form is now' + window.hutber.form.prop);
})(jQuery);