0

我想要一个只使用没有角度的javascript的强循环示例。目前没有没有角度的完整工作示例。我想简单地将 browser.bundle.js 包含在我的 index.html 中,然后从/到服务器端同步数据。事实上,我正在尝试在我的程序中替换 pouchdb,因为 couchdb 在开源社区中似乎并不成功。

我无法正确跟进此文档: 在浏览器中运行 Loopback

  1. 在浏览器中使用Running Loopback的内容创建 browser-app.js
  2. 将内容复制到 browser-app.js
  3. npm install loopback loopback-boot
  4. browserify browser-app.js -o app.bundle.js 然后我得到错误:错误:找不到模块'loopback-boot#instructions' from '/Users/simba/Projects/traveller-app/client/node_modules/loopback-boot '
4

1 回答 1

1

有几个步骤,但它非常简单。

  1. 通过 引导您的应用程序slc loopback
  2. 删除server/boot/root.js
  3. 取消注释中的两行server/server.js,它应该如下所示:

    ...
    // -- Mount static files here--
    // All static middleware should be registered at the end, as all requests
    // passing the static middleware are hitting the file system
    // Example:
    var path = require('path'); //this line is now uncommented
    app.use(loopback.static(path.resolve(__dirname, '../client'))); //this line is now uncommented
    ...
    
  4. 使用您的内容index.htmlclient目录(即)中创建。client/index.html

这应该可以让您通过基本的前端工作进行基本设置。如果您还有其他问题,请告诉我。

于 2014-10-27T20:55:54.893 回答