Aurelia使用Featherjs依赖关系无法正确导入 [英] Aurelia using featherjs dependency failing to properly import

查看:100
本文介绍了Aurelia使用Featherjs依赖关系无法正确导入的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用Aurelia项目中常见的样式导入featherjs.这就是我所拥有的:

How do you import featherjs using the style common in Aurelia projects. This is what I have:

在构建文件aurelia.json

in the build file aurelia.json

"dependencies": [
      {
        "name": "socket.io-client",
        "path": "../node_modules/socket.io-client/dist/socket.io.min"
      },
      {
        "name": "feathers",
        "path": "../node_modules/feathers",
        "main": "client",
        "env": "dev"
      },
      "aurelia-binding",

在app.js中

import io from 'socket.io-client';
import feathers from 'feathers';
//import socketio from 'feathers-socketio';

export class App {
  constructor() {
    this.message = 'Hello World!';

    console.log("startup"); 

    const socket = io('http://localhost:3030');

    const app = feathers();
//      .configure(socketio(socket));
  }
}

错误看起来像这样:

Starting 'readProjectConfiguration'...
Finished 'readProjectConfiguration'
Starting 'processMarkup'...
Starting 'processCSS'...
Starting 'configureEnvironment'...
Finished 'processCSS'
Finished 'processMarkup'
Finished 'configureEnvironment'
Starting 'buildJavaScript'...
Finished 'buildJavaScript'
Starting 'writeBundles'...
Tracing app...
{ uid: 8,
  name: 'writeBundles',
  branch: false,
  error: 
   { [Error: ENOENT: no such file or directory, open '/Users/steve/project/src/uberproto.js']
     errno: -2,
     code: 'ENOENT',
     syscall: 'open',
     path: '/Users/steve/project/src/uberproto.js',
     moduleTree: [ 'feathers/lib/feathers' ],
     fileName: '/Users/steve/project/node_modules/feathers/lib/feathers.js' },
  duration: [ 0, 161365129 ],
  time: 1484844203606 }

一旦它开始处理依赖关系,似乎就会出现路径混乱,以寻找featherjs中的依赖关系.我对这些东西还很陌生,所以它可能很简单,但是我还没有弄清楚包含此依赖项的正确方法.

Once it gets into processing the dependency it seems to be having path confusion looking for dependencies in featherjs. I'm pretty new with this stuff, so it is likely something simple, but I haven't figured out the correct way to include this dependency.

推荐答案

我相信您要安装的是 feathers-client 而不是 feathers .

I believe what you want to install is feathers-client not feathers.

npm i -S feathers-client

aurelia.json:

aurelia.json:

{
   "name": "socket.io-client",
   "path": "../node_modules/socket.io-client/dist/socket.io.min"
},
{
   "name": "feathers-client",
   "path": "../node_modules/feathers-client/dist",
   "main": "feathers"
}

app.js:

import io from 'socket.io-client';
import feathers from 'feathers-client';

export class App {
    constructor() {
        const socket = io('http://localhost:3030');
        const app = feathers().configure(feathers.socketio(socket));
    }
}

这篇关于Aurelia使用Featherjs依赖关系无法正确导入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆