My current setup involves a NodeJS Application that launches an http server and utilizes client side code written in TypeScript with Angular 2.
I'm curious if it's possible to achieve the same functionality using Go programming language?
I tried searching for information on using TypeScript and Go together but couldn't find anything relevant.
Do I need to have NodeJS installed, set up typescript compiler with npm install -g typescript
, then compile the TypeScript files every time they are modified and serve the JavaScript files from my Go Server?
Any insights or guidance on this matter would be highly valued.
Thank you!