Skip to content
Advertisement

How to use node modules (i.e: Sentry) on html template files served from Golang (gin-gonic package)

TL;DR: I have a Golang application that, using gin-gonics package, renders a very simple HTML . Once launched in local, accessing to http://localhost:8080/login (the URL is an example), it will show the html page, with its divs, buttons, etc. The html content is retrieved from a “.tpl” file.

Problem is that such html page must include a javascript script, that uses Sentry. I’m unable to make this work. Including a vanilla-javascript script works perfectly well, but when the script has dependencies, I dont know how to make it work (I dont know if what I want is possible at all).

Any clues?

Details: Golang code is as simple as this:

JavaScript

The “login.tpl” just creates simple divs, dummy buttons and so on. Core part is at the end of the file, where javascripts scripts are included:

JavaScript

Directory structure is as follows:

JavaScript

This works fine if the “login.js” is a vanilla-javascript script like this:

JavaScript

Executing the app, accessing to the URL, using code inspector to check if all requests/responses are correct… everything is OK.

However, trouble starts when I try to include Sentry on that script. Following the official doc: https://docs.sentry.io/platforms/javascript/

If I set the script to this:

JavaScript

and then try to launch the app again, using code inspector an accessing to “console” tab will result in several errors (ranging from “module not found”, to “sentry not found”, to “cannot use import syntax”…)

Of course: changing the script is not the only thing I tried. The “npm” command is launched to generate the related .json files (like package.json), and also the “node_modules” folder.

I tried to copy the package.json and “node_modules” folder to different places in the directory structure, to check if the script is able to find them, and none of them succeeded.

So the question is: it is possible to achieve what I’m trying to do? Goal will be to render that HTML page, with the sentry javascript script running. So, as an example, if I render the HTML, and one of the buttons execute a non-defined function (’cause I forgot to implement it), an error will be sent to Sentry (and I will be able to track it down, log it, etc).

PS: New into frontend/node/javascript development world, so my knowledge may be leaving critical things out of scope.

Advertisement

Answer

Fixed.

As Rahmat Fathoni suggested in a comment to the main post, using CDN worked fine.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement