Coffeescript的安裝與編譯

2021-09-27 12:30:28 字數 1224 閱讀 5318

安裝

在cmd中輸入coffee可以進入coffeescript的命令列模式(repl),然而到我寫完這篇博文為止,我覺得這並沒有什麼卵用

coffeescript的編譯

1.先建立乙個coffeescript檔案,只要以".coffee"結尾就好了,值得一提的是coffeescript的logo非常感人:

2.隨便弄點coffeescript的示例**進去,我在官網上找了點**copy進去,在這裡貼一下

# 賦值:

number = 42opposite = true

# 條件:

number = -42 if

opposite

# 函式:

square = (x) -> x *x

# 陣列:

list = [1, 2, 3, 4, 5]

# 物件:

math =root: math.sqrt

square: square

cube: (x) -> x *square x

# splats:

race = (winner, runners...) ->print winner, runners

# 存在性:

alert "i knew it!" if elvis?# 陣列 推導(comprehensions):

cubes = (math.cube num for num in list)

3.在cmd裡cd 到我們的coffee檔案的路徑下,然後輸入

coffee --watch --compile test.coffee

//u also can do like this

coffee -w -c test.coffee

最後我們會發現在我們的路徑下多了乙個test.js,開啟一看

十分標準的js**,而且有些比我寫的要優雅多了,確實是個好東西。

windows下CoffeeScript 的實現

安裝coffeescript,需要先安裝node.js和npm。在mac 和 linux 的環境下,coffeescript的安裝是相當容易的。比較複雜的呢是在windows的環境下安裝。所以我們著重講一下在windows環境下的安裝方式。安裝完node 包括npm 後,我們到programm fi...

mariaDB的安裝 apache的安裝

1 mariadb的安裝 wget c 解壓 tar xvf mariadb 10.3.6 linux glibc 214 x86 64.tar.gz 移動並重命名 mv mariadb 10.3.6 linux glibc 214 x86 64 usr local mariadb1036 進入該目...

Hive的安裝 Mysql安裝

將我們的hive的安裝包上傳到第三台服務 的 export softwares 徑下,然後進 解壓 cd export softwares tar zxvf apache hive 3.1.0 bin.tar.gz c servers yum install mysql mysql server m...