版主: wanchong , wangyu , eepwwp , firedom |
a6251356
最后登陆时间:2015-10-30 11:06:06 |
在很多场景中,需要通过一个网页的界面,执行一些简单任务。这个时候最简单的方法是一个小的node.js程序,一个静态的html页面。
比如下面: -------- var express = require('express'); var app = express(); app.use('/static', express.static(__dirname + '/public')); var http = require('http').Server(app); app.get('/', function(req, res){ res.sendfile(__dirname + '/index.html'); }); http.listen(3000, function(){ console.log('listening on *:3000'); }); --------- 将上面程序保存为web.js, 然后:npm install express , 然后:node web.js 然后浏览器访问:localhost:3000 就可以访问到index.html了。 啥?你问我index.html时啥东西?推荐到MDN上看下html教程,学习一下简单的网页编写。 |
此帖由nakey于2015-10-30 11:06:23最后编辑
|
|
共1条 1/1 1 |