This package is published as a NPM scoped package. So, if you get a 404 error while doing npm install
, that seems like you are using a different NPM registry (or a NPM proxy).
Try to use the default registry.
See more: storybookjs#15
If you are using NPM 2, you may got some weird issues. Try to use NPM 3. Here's how to do it:
npm i -g npm@3.8.5
rm -rf node_modules
npm i
If you are using Babel 5 inside your project, you will get some errors on parsing modules. Try to migrate your project to Babel 6.
See more: storybookjs#16