...,或是您想要發(fā)布到 NPM 上,建議您編寫插件。首先,在 node_modules 文件夾中建立文件夾,文件夾名稱開頭必須為 hexo-,如此一來 Hexo 才會(huì)在啟動(dòng)時(shí)載入。文件夾內(nèi)至少要包含 2 個(gè)文件:一個(gè)是主程序,另一個(gè)是 package.json,描述...
http://m.hgci.cn/hexodocument/xwib1lke.html二進(jìn)制模塊雖然一般我們使用 JS 編寫模塊,但 NodeJS 也支持使用 C/C++ 編寫二進(jìn)制模塊。編譯好的二進(jìn)制模塊除了文件擴(kuò)展名是.node外,和 JS 模塊的使用方式相同。雖然二進(jìn)制模塊能使用操作系統(tǒng)提供的所有功能,擁有無限的潛...
http://m.hgci.cn/nodejsguide/lac81ng6.html...提供的服務(wù)。 解決方案 創(chuàng)建一個(gè)基本的TCP客戶機(jī)。 在 Node.js 中net = require 'net' domain = 'localhost' port = 9001 connection = net.createConnection port, domain connection.on 'connect', () -> console.log "Opened connection to #{domain}:#{port}." connection.on 'data', (data)...
http://m.hgci.cn/coffeescript/e9l11obq.html...一個(gè)服務(wù)器。 解決方案 創(chuàng)建一個(gè)基本的TCP服務(wù)器。 在 Node.js 中net = require 'net' domain = 'localhost' port = 9001 server = net.createServer (socket) -> console.log "Received connection from #{socket.remoteAddress}" socket.write "Hello, World!\n" socket.end() console.log "Li...
http://m.hgci.cn/coffeescript/yc5g1oc0.html...持持續(xù)的聯(lián)系。 解決方案 創(chuàng)建一個(gè)雙向TCP客戶機(jī)。 在 Node.js 中net = require 'net' domain = 'localhost' port = 9001 ping = (socket, delay) -> console.log "Pinging server" socket.write "Ping" nextPing = -> ping(socket, delay) setTimeout nextPing, delay connection = net.crea...
http://m.hgci.cn/coffeescript/ithd1oc3.html...持持續(xù)的聯(lián)系。 解決方案 創(chuàng)建一個(gè)雙向TCP服務(wù)器。 在 Node.js 中net = require 'net' domain = 'localhost' port = 9001 server = net.createServer (socket) -> console.log "New connection from #{socket.remoteAddress}" socket.on 'data', (data) -> console.log "#{socket.remoteAddre...
http://m.hgci.cn/coffeescript/obvi1oc6.html... 你需要與一個(gè)MongoDB數(shù)據(jù)庫連接的接口。 解決方案 對(duì)于 Node.js 安裝 如果你的計(jì)算機(jī)中還沒有MongoDB ,需要安裝。 安裝本地 MongoDB 模塊。 保存記錄mongo = require 'mongodb' server = new mongo.Server "127.0.0.1", 27017, {} client = new mongo.Db 'test', ser...
http://m.hgci.cn/coffeescript/b1lq1oci.html基本的資源單位(CPU、內(nèi)存等) Container可以加載任意程序,而且不限于Java 一個(gè)Node可以包含多個(gè)Container,也可以是一個(gè)大的Container ApplicationMaster可以根據(jù)需要,動(dòng)態(tài)申請(qǐng)和釋放Container
http://m.hgci.cn/hadoop/s4yc1p30.htmlNode節(jié)點(diǎn)下的Container管理 啟動(dòng)時(shí)向ResourceManager注冊(cè)并定時(shí)發(fā)送心跳消息,等待ResourceManager的指令 監(jiān)控Container的運(yùn)行,維護(hù)Container的生命周期,監(jiān)控Container的資源使用情況 啟動(dòng)或停止Container,管理任務(wù)運(yùn)行時(shí)的依賴包(根據(jù)Applica...
http://m.hgci.cn/hadoop/xh5i1p3p.html...要使用jQuery來調(diào)用AJAX。解決方案$ ?= require 'jquery' # 由于 Node.js 的兼容性 $(document).ready -> # 基本示例 $.get '/', (data) -> $('body').append "Successfully got the page." $.post '/', userName: 'John Doe' favoriteFlavor: 'Mint' (data) -> $('body').append "Successfu...
http://m.hgci.cn/coffeescript/kuqg1pih.html抱歉,暫時(shí)沒有相關(guān)的微課
w3cschool 建議您:
抱歉,暫時(shí)沒有相關(guān)的視頻課程
w3cschool 建議您:
抱歉,暫時(shí)沒有相關(guān)的教程
w3cschool 建議您:
...,或是您想要發(fā)布到 NPM 上,建議您編寫插件。首先,在 node_modules 文件夾中建立文件夾,文件夾名稱開頭必須為 hexo-,如此一來 Hexo 才會(huì)在啟動(dòng)時(shí)載入。文件夾內(nèi)至少要包含 2 個(gè)文件:一個(gè)是主程序,另一個(gè)是 package.json,描述...
http://m.hgci.cn/hexodocument/xwib1lke.html二進(jìn)制模塊雖然一般我們使用 JS 編寫模塊,但 NodeJS 也支持使用 C/C++ 編寫二進(jìn)制模塊。編譯好的二進(jìn)制模塊除了文件擴(kuò)展名是.node外,和 JS 模塊的使用方式相同。雖然二進(jìn)制模塊能使用操作系統(tǒng)提供的所有功能,擁有無限的潛...
http://m.hgci.cn/nodejsguide/lac81ng6.html...提供的服務(wù)。 解決方案 創(chuàng)建一個(gè)基本的TCP客戶機(jī)。 在 Node.js 中net = require 'net' domain = 'localhost' port = 9001 connection = net.createConnection port, domain connection.on 'connect', () -> console.log "Opened connection to #{domain}:#{port}." connection.on 'data', (data)...
http://m.hgci.cn/coffeescript/e9l11obq.html...一個(gè)服務(wù)器。 解決方案 創(chuàng)建一個(gè)基本的TCP服務(wù)器。 在 Node.js 中net = require 'net' domain = 'localhost' port = 9001 server = net.createServer (socket) -> console.log "Received connection from #{socket.remoteAddress}" socket.write "Hello, World!\n" socket.end() console.log "Li...
http://m.hgci.cn/coffeescript/yc5g1oc0.html...持持續(xù)的聯(lián)系。 解決方案 創(chuàng)建一個(gè)雙向TCP客戶機(jī)。 在 Node.js 中net = require 'net' domain = 'localhost' port = 9001 ping = (socket, delay) -> console.log "Pinging server" socket.write "Ping" nextPing = -> ping(socket, delay) setTimeout nextPing, delay connection = net.crea...
http://m.hgci.cn/coffeescript/ithd1oc3.html...持持續(xù)的聯(lián)系。 解決方案 創(chuàng)建一個(gè)雙向TCP服務(wù)器。 在 Node.js 中net = require 'net' domain = 'localhost' port = 9001 server = net.createServer (socket) -> console.log "New connection from #{socket.remoteAddress}" socket.on 'data', (data) -> console.log "#{socket.remoteAddre...
http://m.hgci.cn/coffeescript/obvi1oc6.html... 你需要與一個(gè)MongoDB數(shù)據(jù)庫連接的接口。 解決方案 對(duì)于 Node.js 安裝 如果你的計(jì)算機(jī)中還沒有MongoDB ,需要安裝。 安裝本地 MongoDB 模塊。 保存記錄mongo = require 'mongodb' server = new mongo.Server "127.0.0.1", 27017, {} client = new mongo.Db 'test', ser...
http://m.hgci.cn/coffeescript/b1lq1oci.html基本的資源單位(CPU、內(nèi)存等) Container可以加載任意程序,而且不限于Java 一個(gè)Node可以包含多個(gè)Container,也可以是一個(gè)大的Container ApplicationMaster可以根據(jù)需要,動(dòng)態(tài)申請(qǐng)和釋放Container
http://m.hgci.cn/hadoop/s4yc1p30.htmlNode節(jié)點(diǎn)下的Container管理 啟動(dòng)時(shí)向ResourceManager注冊(cè)并定時(shí)發(fā)送心跳消息,等待ResourceManager的指令 監(jiān)控Container的運(yùn)行,維護(hù)Container的生命周期,監(jiān)控Container的資源使用情況 啟動(dòng)或停止Container,管理任務(wù)運(yùn)行時(shí)的依賴包(根據(jù)Applica...
http://m.hgci.cn/hadoop/xh5i1p3p.html...要使用jQuery來調(diào)用AJAX。解決方案$ ?= require 'jquery' # 由于 Node.js 的兼容性 $(document).ready -> # 基本示例 $.get '/', (data) -> $('body').append "Successfully got the page." $.post '/', userName: 'John Doe' favoriteFlavor: 'Mint' (data) -> $('body').append "Successfu...
http://m.hgci.cn/coffeescript/kuqg1pih.html抱歉,暫時(shí)沒有相關(guān)的文章
w3cschool 建議您: