0

我想在我的项目中使用page.js。但我认为它使用某种构建系统,所以我没有得到我包含在页面中并开始使用的单个 page.js 文件

page('/',index)

任何想法,如何使用它。

4

2 回答 2

1

在您的终端中:

npm install page

然后在节点中:

> var page = require('page')
undefined
> page
{ [Function: page]
  callbacks: [],
  base: [Function],
  start: [Function],
  stop: [Function],
  show: [Function],
  replace: [Function],
  dispatch: [Function],
  Context: [Function: Context],
  Route: [Function: Route] }

那是你要找的吗?

于 2013-01-06T07:58:51.913 回答
1

实际的客户端脚本index.js在包的根目录中调用。只需将其重命名为page.js并将其复制到您保存库脚本的任何位置。

于 2013-07-01T10:12:22.367 回答