nodejs require is not defined code example

Example 1: "tinker" not defined

Step 1 : Install tinker
composer require laravel/tinker

Step 2 : Add provider class name into /config/app.php file
If you open the config/app.php file included with Laravel, you will see a providers array.
providers' => [     .
                    .
                    App\Providers\CountdownTimersServiceProvider::class,
                    Laravel\Tinker\TinkerServiceProvider::class

],

Example 2: require is not defined

remove "type": "module" from package.json

Example 3: require is not defined javascript

<script>
            define([
            "jquery", 
            "mage/translate", 
            "mage/adminhtml/events", 
            "mage/adminhtml/wysiwyg/tiny_mce/setup"
            ], function(jQuery){
                wysiwygCompanyDescription = new wysiwygSetup("company_description", {
                    "width":"100%",
                    "height":"200px",
                    "plugins":[{"name":"image"}],
                    "tinymce4":{"toolbar":"formatselect | bold italic underline | alignleft aligncenter alignright | bullist numlist | link table charmap","plugins":"advlist autolink lists link charmap media noneditable table contextmenu paste code help table",
                    }
                });
                wysiwygCompanyDescription.setup("exact");
            });
        </script>