I have a NodeJS application which has only typescript files in it, no js files. I want to run in on my server in the background.
How can I archive that?
I tried using the npm package called forever
but it only works with js files as it doesn't understand the typescript code.
You could use forever
in combination with ts-node
.
Here is a link to the npm package ts-node
I would suggest using the following command:
forever start -v -c ts-node app.ts
Where -v/--verbose
is for turning on the verbose messages from Forever.
And -c
is the COMMAND to execute which is default is node
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With