我正在尝试使用Dashing-JS,一个基于Sinatra的Ruby框架项目Dashing.IO的端口到Javascript / Node。基本上我有配置Dashing-JS的核心包和依赖项;但是,当试图仅运行样本时,我无法显示除此404错误之外的任何内容,而不是示例仪表板:
项目维护得不好;但是,如果Node的专家能够对这种情况有所了解,我很好奇。路径引用是否不正确?
注意:
1. server.js引用sample.jade。
var dashing = require('new-dashing-js').Dashing();
// Set your auth token here
//dashing.auth_token = 'YOUR_AUTH_TOKEN';
/*
dashing.protected = function(req, res, next) {
// Put any authentication code you want in here.
// This method is run before accessing any resource.
// if (true) next();
}
*/
// Set your default dashboard here
dashing.default_dashboard = 'sample';
dashing.start();