I\'m having a surprisingly hard time finding an answer to this. With plain Node.JS, you can run any js file with node path/to/file.js, with CoffeeScript it\'s <
node path/to/file.js
For environments such as Webstorm where the node command cannot be changed to ts-node or npx:
node
ts-node
npx
npm install ts-node typescript
node --require ts-node/register src/foo.ts
--require ts-node/register