iced-coffeescript

    5熱度

    1回答

    我使用try catch塊在iced coffee script。我打電話不存在的方法fake不存在的對象a並期望發現錯誤。 db = require '../../call/db.iced' try await db.find "79", defer c, d a.fake() catch error console.log "error catched"

    1熱度

    1回答

    我試圖做使用coffeescript和冰咖啡的腳本編程異步/等待風格。 如果'未定義'的迴應是我得到的。 module.exports = update: (req, res) -> await user = User.find({ id: 1 }).exec (err, user) -> throw err if err? console.log(err) #

    3熱度

    1回答

    首先,我安裝nodemon全球: npm install -g nodemon 然後我嘗試使用下面的命令來開始我的apllication: nodemon app.iced 我也得到這樣的錯誤:「語法錯誤:意外的令牌非法「。但是,我可以在沒有任何錯誤的情況下運行我的應用程序而不使用nodemon: iced --nodejs --debug app.iced 問題是什麼?

    3熱度

    2回答

    當我使用vanilla CoffeeScript時,我編譯* .coffee文件並將結果* .js發送到客戶端。 爲了擺脫對客戶端模塊async.js的依賴,我找到了IcedCoffeeScript語言擴展。但是,當我編譯我的代碼(至極具有await和defer關鍵字)* .js文件中,結果我發現非客戶端代碼: iced = require('iced-coffee-script').iced;

    -1熱度

    2回答

    這將是對我非常有用的,如果你能幫助我解決這個功能: textParseQuery = (txtSnippet) -> queryUrl = "http://localhost:8083/txtParse/#{txtSnippet}" console.log queryUrl callback = (response) => parsed = $.pars

    0熱度

    1回答

    我試圖從冰咖啡腳本文件插入腳本標記。我想指定腳本的defer屬性,但coffeescript編譯器不喜歡我想要定義一個名爲defer的東西,因爲它是一個關鍵字。 是否有允許我做以下任何解決方案: script = document.createElement('script') script.type = 'text/javascript'; script.defer = true scri

    1熱度

    1回答

    我可以使用什麼IDE來開發具有語法高亮和智能感知功能的IcedCoffeeScript代碼? 我試圖使用Webstorm,但它不支持IcedCoffeeScript。

    1熱度

    1回答

    當我運行冰鎮nodeunit測試... $ nodeunit path/to/file/file_name.iced ...這是確定。 當我跑了很多的咖啡腳本測試... grunt.initConfig({ nodeunit: { coffee: ['path/to/coffee/nodeunit/tests/**/*_test.coffee'] } });

    1熱度

    2回答

    問題是如何在基於ExpressJS的Web應用程序上使用IcedCoffeeScript(http://maxtaco.github.io/coffee-script)?現在我在我的應用程序中使用vanilla CoffeeScript語言。 謝謝

    1熱度

    1回答

    是否有可能在iced coffee script使異步構造: ,並調用它像: await new Animal, defer(animal) 當我嘗試這樣做,遇到錯誤: unexpected ,