hyperledger-archives / education

Hyperledger training material
https://wiki.hyperledger.org/display/LMDWG
Apache License 2.0
372 stars 360 forks source link

npm run build does not work - but don't think its a problem #25

Open gmanroney opened 6 years ago

gmanroney commented 6 years ago

the website for the training course https://courses.edx.org/courses/course-v1:LinuxFoundationX+LFS171x+3T2017 says you can execute npm run build however the package.json has:

"scripts": {
    "start": "node index.js",
    "test": "echo \"Error: no test specified\" && exit 1"
  },

Am guessing the website needs to be updated?

sweta2003 commented 6 years ago

You will have to install composer cli before running "npm install" (https://hyperledger.github.io/composer/latest/installing/development-tools) Run the following commands -- npm install -g composer-cli npm install -g composer-rest-server npm install -g generator-hyperledger-composer npm install -g yo

gmanroney commented 6 years ago

Ok will try that out.