Dear Guys
I'm running makehuman-js project from Github
I followed the steps:
1- extract the project in AT folder
2- npm install
3- npm test
but there is a problem here:
webpack-dev-server' is not recognized as an internal or external command
I attached my error in this picture
also here is my project folder: root project
After updating my npm and node js. I finally could load the project on web browser, but still have this "Error3" 
Can someone tell me how I can solve this problem, I spent a lot of time, but couldn't find the solution.
author of the package here.
What's happening is that
npm testis running this line '"test": "webpack-dev-server --config webpack.test.config.js --open"' from the projects package.json file. The problem occurs when it can't find the terminal command webpack-dev-server in the system PATH.You can fix this by installing webpack 2 globally with
npm install -g [email protected](thats the version from package.json). If it still isn't found you may need to add your global node_modules folder to your PATH environmental variable.Another approach is going to the package.json replacing "webpack-dev-server" with ".\node_modules\.bin\webpack-dev-server" which is the relative local path for windows. Make sure you also run
npm install --devto install development dependancies (I've added this to the readme now).The project hasn't been used by many people yet so there are probably a few rough spots where it's confusing. It's great your interested though, so if you have other problems you can open an issue on the github repository and I'll try to help/fix it when I have time.