简体   繁体   中英

How to use in browser a JS file generated from IcedCoffeeScript

When I use vanilla CoffeeScript, I compile a *.coffee files and send resulted *.js to client. To get rid of dependence on the module async.js in client side, I found the IcedCoffeeScript language extension. But when I compiled my code (wich has await and defer keywords) into *.js, in result I found non-client-side code:

iced = require('iced-coffee-script').iced; 

So I can't use it in client side. Could to solving this problem?

I use the following gist successfully in production with version 1.6.3-g

https://gist.github.com/littleloops/7546859

You need to set the --runtime flag on iced compiler to "inline". http://maxtaco.github.io/coffee-script/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM