Nodejs Coffescript executing without translation and coffee command

Is here any way how to execute Coffescript script in Nodejs without translation to js or coffee command.

Something what will translate coffeesctipts on the fly, how will node request them.

First, do npm install coffee-script, then in your server.js (or app.js) do require('coffee-script') and any coffeescript files will automatically be compiled.

This tutorial series goes into how to include coffeescript files so they will automatically be recompiled when they are edited:

http://nodetuts.com/tutorials/16-introduction-to-coffeescript-and-nodejs.html#video

http://nodetuts.com/tutorials/14-some-nodejs-tools.html#video

If your code is 100% coffee, you might want to check nodemon

I am currently writing my code directly in coffescript, then to run my server instead of doing node <server-file>coffee, I just run:

nodemon <server-file>.coffee