Ember-CLI: Cannot find module 'broccoli-static-compiler'Error: Cannot find module 'broccoli-static-compiler'
ember-cli, ember.js
Solution
It means `ember serve` can't find the Node.js package `broccoli-static-compiler`. Broccoli provides the build pipeline for Ember CLI projects, `broccoli-static-compiler` is a Broccoli plugin that copies files as-is to the build output.
I cannot reproduce this with Ember CLI `0.0.28` and `0.0.29`, this package should be available in `YOURPROJECT/node_modules/ember-cli/node_modules/`. Which version of Ember CLI do you have installed? (`ember --version`)
You could try installing `broccoli-static-compiler` yourself locally for your new project by running `npm install --save-dev broccoli-static-compiler` from the project directory.
Problem
Anyone know what this error means? Most important: how to fix? `Cannot find module 'broccoli-static-compiler'Error: Cannot find module 'broccoli-static-compiler'` This happened today after installing ember-cli new project and trying to run `ember server`