Node.js 模塊簡單用法

以前使用node的包管理器npm,生成vue-cli工程模板,並且常常經過npm進行包管理,爲了更好的瞭解nodejs包管理,學習一下nodejs
1、使用Nodejs搭建一個web服務器

默認你們已經安裝好了node,直接寫項目vue

1.一、建立文件夾 scott > imooc > begining
         建立文件 server.jsnode

var http = require('http')

var server = http.createServer(function (req, res) {
    res.writeHead(200,{'Content-Type':'text/plain'})
    res.end('Hello Nodejs \n')
})
server.listen(1337, '127.0.0.1')

1.二、運行文件web

//cmd cd 當前目錄中
scott\imooc\begining> node server

1.三、打開瀏覽器輸入 127.0.0.1:1337
         頁面顯示 Hello Nodejsvue-cli

2、簡單的node模塊

建立模塊、導出模塊、加載模塊、使用模塊npm

2.一、建立模塊 school > student.js瀏覽器

// 編寫方法
function add (stu) {
    console.log('New student:' + stu)
}
// 導出模塊
exports.add = add

2.二、建立文件 school > stuInfo.js服務器

// 加載模塊
var stu = require('./stu')

// 使用模塊
stu.add('小明')

2.三、運行文件,運行方法,顯示信息學習

// cmd  當前路徑,執行命令
school>node stuInfo
New student:小明
相關文章
相關標籤/搜索