Giter VIP home page Giter VIP logo

Comments (8)

feross avatar feross commented on May 13, 2024

I'm fairly certain this issue is because the code currently assumes you have Chrome Canary for Mac installed and attempts to launch the chrome app in that browser. This is what I've been using to develop, but obviously we should figure out something better so others can contribute more easily. You can change the path here (https://github.com/feross/webtorrent/blob/master/bin/start.js#L5) to your chrome binary to get it working.

from webtorrent.

feross avatar feross commented on May 13, 2024

See #39 for the answer to your "why" question.

from webtorrent.

shyamsalimkumar avatar shyamsalimkumar commented on May 13, 2024

Uhm...
Hi there... 👋
I changed the line you mentioned to var BIN = 'google-chrome' and this fires up Chrome alright, but it throws an Could not load extension from ''. Manifest file is missing or unreadable. alert message. I'm not sure where the Manifest file is, so some clues or pointers for resolving this problem would be helpful. Thanks in advance.

from webtorrent.

feross avatar feross commented on May 13, 2024

@shyamsalimkumar What OS and OS version are you using? If you give me that info I can debug this.

from webtorrent.

shyamsalimkumar avatar shyamsalimkumar commented on May 13, 2024

Ubuntu 13.10 32bit... I presume that the Linux support has been added as I noticed #40 was merged, and it seemed to indicate that.

from webtorrent.

deepak1556 avatar deepak1556 commented on May 13, 2024

yup can confirm same error as @shyamsalimkumar on windows with chrome 33.0.1750.154 m. But i can load the app via chrome://extensions then it gave me a error first regarding socket api nt available then i had to change manifest to having sockets property instead of placing it in permissions. Then it worked :) but no idea abt y the cli is not picking up the same manifest.json.. @feross any clue?

{
  "manifest_version": 2,
  "name": "WebTorrent",
  "version": "0.1.0",
  "author": "Feross Aboukhadijeh",

  "app": {
    "background": {
      "scripts": ["bundle.js"]
    }
  },

  "description": "Simple, robust BitTorrent client for the browser",
  "icons": { "16": "calculator-16.png", "128": "calculator-128.png" },

  "sockets": {
        "tcp": {
          "connect": ""
        },
        "tcpServer": {
          "listen": ""
        },
        "udp": {
          "send": "",
          "bind": ""
        }
  },

  "permissions": [
    "storage",
    "unlimitedStorage",
    {
      "fileSystem": [
        "write",
        "retainEntries",
        "directory"
      ]
    },
    "http://*/*",
    "contextMenus"
  ],

  "offline_enabled": true
}

from webtorrent.

feross avatar feross commented on May 13, 2024

Not sure why people are experiencing these errors. I'll investigate.

from webtorrent.

rabidaudio avatar rabidaudio commented on May 13, 2024

Same on Arch. I thought at first that --load-and-launch-app might want the full path, but that wasn't the issue.

from webtorrent.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.