alexa-samples / skill-sample-nodejs-adventure-game

This tool provides an easy to use front-end that allows developers to instantly deploy code for your story, or use the generated code as a starting point for more complex projects.
Apache License 2.0
510 stars 218 forks source link

Unable to install #4

Closed donHolmberg closed 7 years ago

donHolmberg commented 7 years ago

nam start gives this error....

5 verbose stack Error: missing script: start

rjamison commented 7 years ago

Sorry you're having trouble. That error usually indicates the "package.json" file for project is missing a "start" element inside "scripts", though this project's seems fine:

"scripts": {
    "postinstall": "node node_modules/jspm/jspm.js install",
    "start": "node node_modules/gulp/bin/gulp.js"
},

What command are you running to produce the error, and what directory are you running it from?

donHolmberg commented 7 years ago

Thanks,

I figured it out, I just had to switch to the directory where everything was installed.

Thanks, Don

Sent from my iPhone

On Aug 8, 2016, at 12:08 PM, Robert Jamison notifications@github.com wrote:

Sorry you're having trouble. That error usually indicates the "package.json" file for project is missing a "start" element inside "scripts", though this project's seems fine:

"scripts": { "postinstall": "node node_modules/jspm/jspm.js install", "start": "node node_modules/gulp/bin/gulp.js" }, What command are you running to produce the error, and what directory are you running it from?

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.