Node
原文地址:http://fms.help/beginning.html
请确保你安装了 Node
打开 http://nodejs.org/ 点击 Download 或 Install
如果你不了解 Node 请务必阅读 Node 安装启动测试
FMS
成功安装 Node 后在命令行 输入
npm install fms
# 或者安装到全局
npm install fms -g
nodemon
建议使用 nodemon 启动 FMS,nodemon 可以监控代码修改后重启 node 服务
npm install nodemon -g
Mac 用户请输入
sudo npm install nodemon -g
启动
创建 fms.js
文件,文件内容如下:
var fms = require(‘fms‘)
fms.run()
fms.ajax({
url: ‘/test/‘,
type: ‘get‘,
res: {
ok: ‘yes‘,
err: ‘no‘
}
})
创建 index.html
文件,文件内容如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>FMS Demo</title>
</head>
<body>
<script src="http://apps.bdimg.com/libs/jquery/1.9.0/jquery.min.js"></script>
<script>
$.ajax({
url: ‘/test/‘,
type: ‘get‘
}).done(function (data) {
$(‘body‘).html(data)
})
</script>
</body>
</html>
使用命令行切换到 fms.js 所在目录
cd C:\目录路径
例如:cd C:\nimojs\fms
使用 node 或 nodemon 运行 fms.js
node fms.js
nodemon -w fms.js fms.js
nodemon 将会监听 fms.js 文件的修改,当文件被编辑后将会重新启动 fms.js
启动成功后将会提示
[F.M.S] Running at http://127.0.0.1:3000
若想关闭请按
Ctrl + C
如果提示 Error: Cannot find module ‘fms‘
则表示你没有在当前目录安装 FMS,请在命令行运行 npm install fms
打开 http://127.0.0.1:3000 可以看到FMS的控制界面和文档
打开 http://127.0.0.1:3000/index.html http://127.0.0.1:3000/test/ 或 可以查看模拟 AJAX 效果
时间: 2024-11-08 22:23:10