Repurposing neural network trained using the NEAT-Python library

I’m making a program to train an AI agent to play the game of snake in Python using the NEAT-Python library. After training, I want to export the network and then use it to visualize how it makes decisions in another language (such as JavaScript). Is it possible to export the network and then use it outside of Python? I tried looking at the PyTorch-NEAT library from Uber Research, but it wasn’t exactly what I was looking for.