GithubHelp home page GithubHelp logo

Comments (2)

aRestless avatar aRestless commented on April 28, 2024 4

That's specific to your usage of Electron Builder and has nothing to do with this module.

I learned by now that install-app-deps is an electron-builder specific command - but the issue persists with electron, install-app-deps is just one way of solving it with electron-builder.

Documenting this here for others to find.

Consider the following package.json:

{
  "name": "active-win-test",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "electron": "^1.6.11"
  },
  "dependencies": {
    "active-win": "^2.0.0"
  }
}

And the following index.js:

require("active-win")();

Commands:

npm install
./node_modules/.bin/electron .

Will result in the error posted above. While

node .

will run through fine. So yeah, it seems to be an issue how electron handles native dependencies in general - the reliance on electron-builder for this part is a bit weird to me. I understood electron-builder as an optional, additional package to use for distribution, not for building your dependencies while developing.

But well, even though the problem isn't directly linked to your package, maybe this Issue helps someone in the future who takes the same path as me.

To finally sum up: To get rid of this error when using electron, add electron-builder to your dev-dependencies (npm install electron-builder --save-dev), add "postinstall": "install-app-deps" to the "scripts" section of your package.json, resulting in something like this:

{
  "name": "active-win-test",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
  "postinstall": "install-app-deps",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC",
  "dependencies": {
    "active-win": "^2.0.0"
  },
  "devDependencies": {
    "electron": "^1.6.11",
    "electron-builder": "^19.6.0"
  }
}

Finally, run npm install again and you'll be fine.

from active-win.

sindresorhus avatar sindresorhus commented on April 28, 2024

Mention in the docs to include "postinstall": "install-app-deps"

That's specific to your usage of Electron Builder and has nothing to do with this module.

This is also clearly documented at the top of the docs of Electron Builder.

from active-win.

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.