skip to Main Content

I’m getting an error when I try to installing a package in Iron Scaffolding. The package I’m trying to install is the Twitter Bootstrap.

The error I'm getting when I try to install the package "twbs:bootstrap"

3

Answers


  1. You might not have handled the error event properly in the program.

    Use this in function

    function (e) {
          e.preventDefault();
    }
    
    Login or Signup to reply.
  2. Try using meteor without the scaffolding tool:

    meteor add twbs:bootstrap
    

    This shouldn’t impact your apps structure. Packages are handled more stealthily than they used to since 0.9.0

    Login or Signup to reply.
  3. Iron-cli has had that breaking since Meteor 1.3

    You can try my workaround:
    https://github.com/iron-meteor/iron-cli/issues/240

    Try one of these:
    For IronRouter, Meteor 1.2 style:

    $ npm install -g iron-maka

    For FlowRouter, Meteor 1.3 style:

    $ npm install -g maka-cli

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search