coryhouse / react-slingshot

React + Redux starter kit / boilerplate with Babel, hot reloading, testing, linting and a working example app built in
MIT License
9.74k stars 2.94k forks source link

npm start -s fails #231

Closed BostjanSkok closed 7 years ago

BostjanSkok commented 8 years ago

Node version: v6.3.1 npm version: 3.10.3 Operating system: ubuntu:xenial docker container Command line used:

root@5a5d40d8a0d3:/FrontEnd# npm start -s sh: 1: rimraf: not found sh: 1: babel-node: not found ERROR: "remove-dist" exited with 1.

Steps to reproduce:

coryhouse commented 8 years ago

Interesting OS story. It sounds like your path isn't getting set.

Two things:

  1. You ran npm install first, right?
  2. Try adding the path in front of all calls to node modules in the scripts in package.json. For example:

node_modules/.bin/babel-node

or

./node_modules/.bin/babel-node

BostjanSkok commented 8 years ago

my ./node_modules/.bin/ root@5d4645625f4b:/FrontEnd# ls -l /FrontEnd/node_modules/.bin/ total 0 lrwxrwxrwx 1 1000 1000 0 Aug 11 13:43 acorn -> ../acorn/bin/acorn lrwxrwxrwx 1 1000 1000 0 Aug 11 13:43 eslint -> ../eslint/bin/eslint.js lrwxrwxrwx 1 1000 1000 0 Aug 11 13:49 npm-run-all -> ../npm-run-all/bin/npm-run-all/index.js lrwxrwxrwx 1 1000 1000 0 Aug 11 13:50 run-p -> ../npm-run-all/bin/run-p/index.js lrwxrwxrwx 1 1000 1000 0 Aug 11 13:50 run-s -> ../npm-run-all/bin/run-s/index.js

i ran: $npm run setup $npm start -s

npm-run-all not found so i ran $ npm install npm-run-all -g

Now npm start -s
sh: 1: babel-node: not found sh: 1: rimraf: not found ERROR: "start-message" exited with 1.

without the -s if it helps:

sh: 1: sh: 1: rimraf: not found babel-node: not found

npm ERR! Linux 3.13.0-92-generic npm ERR! argv "/usr/bin/nodejs" "/usr/bin/npm" "run-script" "start-message" npm npmERR! node v6.3.1 npmERR! ERR! npm Linux 3.13.0-92-generic npm ERR! argv "/usr/bin/nodejs" "/usr/bin/npm" "run-script" "remove-dist" npm ERR! v3.10.5 npm node v6.3.1 ERR!npm file sh npm ERR! ERR! code ELIFECYCLE npm npm ERR! errno ENOENT npm v3.10.5 ERR!npm syscall spawn ERR! filenpm sh npm ERR! ERR! micro-comb-ui@0.1.0 start-message: babel-node tools/startMessage.js codenpm ELIFECYCLE ERR!npm ERR! spawn ENOENT npm errno ENOENT npm ERR! syscallERR! spawn npm npm ERR! ERR! micro-comb-ui@0.1.0 remove-dist: rimraf ./dist npm Failed at the micro-comb-ui@0.1.0 start-message script 'babel-node tools/startMessage.js'. npmERR! spawn ENOENT ERR! Make sure you have the latest version of node.js and npm installed. npm npm ERR! If you do, this is most likely a problem with the micro-comb-ui package, npmERR! npm ERR! not with npm itself. ERR!npm ERR! Failed at the micro-comb-ui@0.1.0 remove-dist script 'rimraf ./dist'. npm Tell the author that this fails on your system: npm ERR!ERR! babel-node tools/startMessage.js Make sure you have the latest version of node.js and npm installed. npm ERR! You can get information on how to open an issue for this project with: npm npm ERR!ERR! npm bugs micro-comb-ui If you do, this is most likely a problem with the micro-comb-ui package, npmnpm ERR!ERR! not with npm itself. npm ERR! Tell the author that this fails on your system: Or if that isn't available, you can get their info via: npmnpm ERR! npm owner ls micro-comb-ui npm ERR!ERR! rimraf ./dist npm There is likely additional logging output above. ERR! You can get information on how to open an issue for this project with: npm ERR! npm bugs micro-comb-ui npm ERR! Or if that isn't available, you can get their info via:

npm ERR! npm owner ls micro-comb-ui npm ERR! There is likely additional logging output above. npm ERR! Please include the following file with any support request: npm ERR! /FrontEnd/npm-debug.log

npm ERR! Please include the following file with any support request: npm ERR! /FrontEnd/npm-debug.log ERROR: "start-message" exited with 1.

npm ERR! Linux 3.13.0-92-generic npm ERR! argv "/usr/bin/nodejs" "/usr/bin/npm" "start" npm ERR! node v6.3.1 npm ERR! npm v3.10.5 npm ERR! code ELIFECYCLE npm ERR! micro-comb-ui@0.1.0 prestart: npm-run-all --parallel start-message remove-dist npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the micro-comb-ui@0.1.0 prestart script 'npm-run-all --parallel start-message remove-dist'. npm ERR! Make sure you have the latest version of node.js and npm installed. npm ERR! If you do, this is most likely a problem with the micro-comb-ui package, npm ERR! not with npm itself. npm ERR! Tell the author that this fails on your system: npm ERR! npm-run-all --parallel start-message remove-dist npm ERR! You can get information on how to open an issue for this project with: npm ERR! npm bugs micro-comb-ui npm ERR! Or if that isn't available, you can get their info via: npm ERR! npm owner ls micro-comb-ui npm ERR! There is likely additional logging output above.

npm ERR! Please include the following

coryhouse commented 8 years ago

What do you see on the command line when you run npm install?

BostjanSkok commented 8 years ago

npm install npm WARN lifecycle micro-comb-ui@0.1.0~preinstall: cannot run in wd %s %s (wd=%s) micro-comb-ui@0.1.0 node tools/nodeVersionCheck.js /FrontEnd npm WARN optional Skipping failed optional dependency /chokidar/fsevents: npm WARN notsup Not compatible with your operating system or architecture: fsevents@1.0.14 npm WARN optional Skipping failed optional dependency /browser-sync/chokidar/fsevents: npm WARN notsup Not compatible with your operating system or architecture: fsevents@1.0.14

BostjanSkok commented 8 years ago

Now it starts watching files i ran $npm install babel -g

then it complained to uninstall babel so i did $npm uninstall babel $npm install babel-cli as requsted

than it complained about mocha and it would not install but $npm install mocha -g worked then esw was missing so i instaled eslint-watch now npm start -s seams to run

my current bin ls /FrontEnd/node_modules/.bin/ _mocha babel-external-helpers eslint npm-run-all run-p acorn babel-node esw rimraf run-s

Could i just install everything globaly since is a container ?

kwelch commented 8 years ago

If you run npm install from the project directory it will read the package.json and install all needed dependancies. Have you tried that?

BostjanSkok commented 8 years ago

yes running install returns my reviews comment just some

npm install npm WARN lifecycle micro-comb-ui@0.1.0~preinstall: cannot run in wd %s %s (wd=%s) micro-comb-ui@0.1.0 node tools/nodeVersionCheck.js /FrontEnd npm WARN optional Skipping failed optional dependency /chokidar/fsevents: npm WARN notsup Not compatible with your operating system or architecture: fsevents@1.0.14 npm WARN optional Skipping failed optional dependency /browser-sync/chokidar/fsevents: npm WARN notsup Not compatible with your operating system or architecture: fsevents@1.0.14

BostjanSkok commented 8 years ago

Should it try a fresh folder and do just npm install without the npm run setup

BostjanSkok commented 8 years ago

root@a3dc0e61be1d:/FrontEnd# npm install npm WARN deprecated tough-cookie@2.2.2: ReDoS vulnerability parsing Set-Cookie https://nodesecurity.io/advisories/130 npm WARN deprecated minimatch@2.0.10: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue npm WARN deprecated minimatch@0.2.14: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue npm WARN prefer global node-gyp@3.4.0 should be installed with -g

node-sass@3.8.0 install /FrontEnd/node_modules/node-sass node scripts/install.js

Binary downloaded and installed at /FrontEnd/node_modules/node-sass/vendor/linux-x64-48/binding.node

node-sass@3.8.0 postinstall /FrontEnd/node_modules/node-sass node scripts/build.js

"/FrontEnd/node_modules/node-sass/vendor/linux-x64-48/binding.node" exists. testing binary. Binary is fine; exiting. npm WARN lifecycle react-slingshot@5.0.0~preinstall: cannot run in wd %s %s (wd=%s) react-slingshot@5.0.0 node tools/nodeVersionCheck.js /FrontEnd react-slingshot@5.0.0 /FrontEnd +-- autoprefixer@6.4.0 | +-- browserslist@1.3.5 | +-- caniuse-db@1.0.30000520 | +-- normalize-range@0.1.2 | +-- num2fraction@1.2.2 | +-- postcss@5.1.2 | | -- js-base64@2.1.9 |-- postcss-value-parser@3.3.0 +-- babel-cli@6.11.4 | +-- babel-polyfill@6.13.0 | | +-- core-js@2.4.1 | | -- regenerator-runtime@0.9.5 | +-- babel-runtime@6.11.6 | |-- core-js@2.4.1 | +-- bin-version-check@2.1.0 | | +-- bin-version@1.0.4 | | | -- find-versions@1.2.1 | | | +-- array-uniq@1.0.3 | | |-- semver-regex@1.0.0 | | +-- semver@4.3.6 | | -- semver-truncate@1.1.2 | |-- semver@5.3.0 | +-- chalk@1.1.1 | | -- supports-color@2.0.0 | +-- chokidar@1.6.0 | | +-- anymatch@1.3.0 | | | +-- arrify@1.0.1 | | |-- micromatch@2.3.11 | | +-- async-each@1.0.0 | | +-- glob-parent@2.0.0 | | +-- inherits@2.0.1 | | +-- is-binary-path@1.0.1 | | | -- binary-extensions@1.5.0 | | +-- is-glob@2.0.1 | |-- readdirp@2.1.0 | | -- set-immediate-shim@1.0.1 | +-- commander@2.9.0 | |-- graceful-readlink@1.0.1 | +-- convert-source-map@1.3.0 | +-- fs-readdir-recursive@0.1.2 | +-- glob@5.0.15 | | +-- inflight@1.0.5 | | | -- wrappy@1.0.2 | |-- once@1.3.3 | +-- lodash@4.14.2 | +-- log-symbols@1.0.2 | +-- output-file-sync@1.1.2 | | -- graceful-fs@4.1.5 | +-- path-exists@1.0.0 | +-- path-is-absolute@1.0.0 | +-- request@2.74.0 | | +-- aws-sign2@0.6.0 | | +-- aws4@1.4.1 | | +-- bl@1.1.2 | | |-- readable-stream@2.0.6 | | +-- caseless@0.11.0 | | +-- combined-stream@1.0.5 | | | -- delayed-stream@1.0.0 | | +-- extend@3.0.0 | | +-- forever-agent@0.6.1 | | +-- form-data@1.0.0-rc4 | | +-- har-validator@2.0.6 | | +-- hawk@3.1.3 | | | +-- boom@2.10.1 | | | +-- cryptiles@2.0.5 | | | +-- hoek@2.16.3 | | |-- sntp@1.0.9 | | +-- http-signature@1.1.1 | | | +-- assert-plus@0.2.0 | | | +-- jsprim@1.3.0 | | | | +-- extsprintf@1.0.2 | | | | +-- json-schema@0.2.2 | | | | -- verror@1.3.6 | | |-- sshpk@1.9.2 | | | +-- asn1@0.2.3 | | | +-- assert-plus@1.0.0 | | | +-- dashdash@1.14.0 | | | | -- assert-plus@1.0.0 | | | +-- ecc-jsbn@0.1.1 | | | +-- getpass@0.1.6 | | | |-- assert-plus@1.0.0 | | | +-- jodid25519@1.0.2 | | | +-- jsbn@0.1.0 | | | -- tweetnacl@0.13.3 | | +-- is-typedarray@1.0.0 | | +-- isstream@0.1.2 | | +-- mime-types@2.1.11 | | |-- mime-db@1.23.0 | | +-- node-uuid@1.4.7 | | +-- oauth-sign@0.8.2 | | +-- qs@6.2.1 | | +-- stringstream@0.0.5 | | +-- tough-cookie@2.3.1 | | -- tunnel-agent@0.4.3 | +-- slash@1.0.0 | +-- source-map@0.5.6 |-- v8flags@2.0.11 | -- user-home@1.1.1 +-- babel-core@6.11.4 | +-- babel-code-frame@6.11.0 | |-- js-tokens@2.0.0 | +-- babel-generator@6.11.4 | | -- detect-indent@3.0.1 | |-- repeating@1.1.3 | | -- is-finite@1.0.1 | +-- babel-helpers@6.8.0 | +-- babel-messages@6.8.0 | +-- babel-template@6.9.0 | +-- babel-traverse@6.13.0 | |-- globals@8.18.0 | +-- babel-types@6.13.0 | | -- to-fast-properties@1.0.2 | +-- babylon@6.8.4 | +-- debug@2.2.0 | |-- ms@0.7.1 | +-- json5@0.4.0 | +-- minimatch@3.0.3 | | -- brace-expansion@1.1.6 | | +-- balanced-match@0.4.2 | |-- concat-map@0.0.1 | +-- private@0.1.6 | -- shebang-regex@1.0.0 +-- babel-loader@6.2.4 | +-- loader-utils@0.2.15 | | +-- big.js@3.1.3 | | +-- emojis-list@2.0.1 | |-- json5@0.5.0 | -- mkdirp@0.5.1 |-- minimist@0.0.8 +-- babel-plugin-react-display-name@2.0.0 +-- babel-plugin-transform-react-constant-elements@6.9.1 +-- babel-plugin-transform-react-remove-prop-types@0.2.9 +-- babel-preset-es2015@6.9.0 | +-- babel-plugin-check-es2015-constants@6.8.0 | +-- babel-plugin-transform-es2015-arrow-functions@6.8.0 | +-- babel-plugin-transform-es2015-block-scoped-functions@6.8.0 | +-- babel-plugin-transform-es2015-block-scoping@6.10.1 | +-- babel-plugin-transform-es2015-classes@6.9.0 | | +-- babel-helper-define-map@6.9.0 | | +-- babel-helper-function-name@6.8.0 | | +-- babel-helper-optimise-call-expression@6.8.0 | | -- babel-helper-replace-supers@6.8.0 | +-- babel-plugin-transform-es2015-computed-properties@6.8.0 | +-- babel-plugin-transform-es2015-destructuring@6.9.0 | +-- babel-plugin-transform-es2015-duplicate-keys@6.8.0 | +-- babel-plugin-transform-es2015-for-of@6.8.0 | +-- babel-plugin-transform-es2015-function-name@6.9.0 | +-- babel-plugin-transform-es2015-literals@6.8.0 | +-- babel-plugin-transform-es2015-modules-commonjs@6.11.5 | |-- babel-plugin-transform-strict-mode@6.11.3 | +-- babel-plugin-transform-es2015-object-super@6.8.0 | +-- babel-plugin-transform-es2015-parameters@6.11.4 | | +-- babel-helper-call-delegate@6.8.0 | | | -- babel-helper-hoist-variables@6.8.0 | |-- babel-helper-get-function-arity@6.8.0 | +-- babel-plugin-transform-es2015-shorthand-properties@6.8.0 | +-- babel-plugin-transform-es2015-spread@6.8.0 | +-- babel-plugin-transform-es2015-sticky-regex@6.8.0 | | -- babel-helper-regex@6.9.0 | +-- babel-plugin-transform-es2015-template-literals@6.8.0 | +-- babel-plugin-transform-es2015-typeof-symbol@6.8.0 | +-- babel-plugin-transform-es2015-unicode-regex@6.11.0 | |-- regexpu-core@2.0.0 | | +-- regenerate@1.3.1 | | +-- regjsgen@0.2.0 | | -- regjsparser@0.1.5 | |-- jsesc@0.5.0 | -- babel-plugin-transform-regenerator@6.11.4 |-- babel-plugin-syntax-async-functions@6.13.0 +-- babel-preset-react@6.11.1 | +-- babel-plugin-syntax-flow@6.13.0 | +-- babel-plugin-syntax-jsx@6.13.0 | +-- babel-plugin-transform-flow-strip-types@6.8.0 | +-- babel-plugin-transform-react-display-name@6.8.0 | +-- babel-plugin-transform-react-jsx@6.8.0 | | -- babel-helper-builder-react-jsx@6.9.0 | +-- babel-plugin-transform-react-jsx-self@6.11.0 |-- babel-plugin-transform-react-jsx-source@6.9.0 +-- babel-preset-react-hmre@1.1.1 | +-- babel-plugin-react-transform@2.0.2 | +-- react-transform-catch-errors@1.0.2 | +-- react-transform-hmr@1.0.4 | | +-- global@4.3.0 | | | +-- min-document@2.18.1 | | | | -- dom-walk@0.1.1 | | |-- process@0.5.2 | | -- react-proxy@1.1.8 | |-- react-deep-force-update@1.0.1 | -- redbox-react@1.3.0 |-- error-stack-parser@1.3.6 | -- stackframe@0.3.1 +-- babel-preset-stage-1@6.5.0 | +-- babel-plugin-transform-class-constructor-call@6.8.0 | |-- babel-plugin-syntax-class-constructor-call@6.13.0 | +-- babel-plugin-transform-class-properties@6.11.5 | | -- babel-plugin-syntax-class-properties@6.13.0 | +-- babel-plugin-transform-decorators@6.13.0 | | +-- babel-helper-explode-class@6.8.0 | | |-- babel-helper-bindify-decorators@6.8.0 | | -- babel-plugin-syntax-decorators@6.13.0 | +-- babel-plugin-transform-export-extensions@6.8.0 | |-- babel-plugin-syntax-export-extensions@6.13.0 | -- babel-preset-stage-2@6.13.0 | +-- babel-plugin-transform-object-rest-spread@6.8.0 | |-- babel-plugin-syntax-object-rest-spread@6.13.0 | -- babel-preset-stage-3@6.11.0 | +-- babel-plugin-syntax-trailing-function-commas@6.13.0 | +-- babel-plugin-transform-async-to-generator@6.8.0 | |-- babel-helper-remap-async-to-generator@6.11.2 | -- babel-plugin-transform-exponentiation-operator@6.8.0 | +-- babel-helper-builder-binary-assignment-operator-visitor@6.8.0 | |-- babel-helper-explode-assignable-expression@6.8.0 | -- babel-plugin-syntax-exponentiation-operator@6.13.0 +-- babel-register@6.11.6 | +-- core-js@2.4.1 | +-- home-or-tmp@1.0.0 | |-- os-tmpdir@1.0.1 | -- source-map-support@0.2.10 |-- source-map@0.1.32 | -- amdefine@1.0.0 +-- browser-sync@2.14.0 | +-- browser-sync-client@2.4.2 | | +-- etag@1.7.0 | |-- fresh@0.3.0 | +-- browser-sync-ui@0.6.0 | | +-- async-each-series@0.1.1 | | +-- stream-throttle@0.1.3 | | | -- limiter@1.1.0 | |-- weinre@2.0.0-pre-I0Z7U9OV | | +-- express@2.5.11 | | | +-- connect@1.9.2 | | | | -- formidable@1.0.17 | | | +-- mkdirp@0.3.0 | | |-- qs@0.4.2 | | -- underscore@1.7.0 | +-- bs-recipes@1.2.2 | +-- chokidar@1.5.1 | +-- connect@3.4.1 | | +-- finalhandler@0.4.1 | | | +-- on-finished@2.3.0 | | | |-- ee-first@1.1.1 | | | -- unpipe@1.0.0 | | +-- parseurl@1.3.1 | |-- utils-merge@1.0.0 | +-- dev-ip@1.0.1 | +-- easy-extender@2.3.2 | | -- lodash@3.10.1 | +-- eazy-logger@3.0.2 | |-- tfunk@3.0.2 | | -- object-path@0.9.2 | +-- emitter-steward@1.0.0 | +-- fs-extra@0.26.7 | | +-- jsonfile@2.3.1 | |-- klaw@1.3.0 | +-- http-proxy@1.13.3 | | +-- eventemitter3@1.2.0 | | -- requires-port@1.0.0 | +-- immutable@3.8.1 | +-- localtunnel@1.8.1 | | +-- openurl@1.1.0 | | +-- request@2.65.0 | | | +-- bl@1.0.3 | | | |-- readable-stream@2.0.6 | | | +-- http-signature@0.11.0 | | | | +-- asn1@0.1.11 | | | | +-- assert-plus@0.1.5 | | | | -- ctype@0.5.3 | | | +-- qs@5.2.1 | | |-- tough-cookie@2.2.2 | | -- yargs@3.29.0 | | +-- camelcase@1.2.1 | |-- window-size@0.1.4 | +-- micromatch@2.3.8 | | +-- arr-diff@2.0.0 | | | -- arr-flatten@1.0.1 | | +-- array-unique@0.2.1 | | +-- braces@1.8.5 | | | +-- expand-range@1.8.2 | | | |-- fill-range@2.2.3 | | | | +-- is-number@2.1.0 | | | | +-- isobject@2.1.0 | | | | +-- randomatic@1.1.5 | | | | -- repeat-string@1.5.4 | | | +-- preserve@0.2.0 | | |-- repeat-element@1.1.2 | | +-- expand-brackets@0.1.5 | | | -- is-posix-bracket@0.1.1 | | +-- extglob@0.3.2 | | +-- filename-regex@2.0.0 | | +-- is-extglob@1.0.0 | | +-- kind-of@3.0.4 | | +-- normalize-path@2.0.1 | | +-- object.omit@2.0.0 | | | +-- for-own@0.1.4 | | | |-- for-in@0.1.5 | | | -- is-extendable@0.1.1 | | +-- parse-glob@3.0.4 | | | +-- glob-base@0.3.0 | | |-- is-dotfile@1.0.2 | | -- regex-cache@0.4.3 | | +-- is-equal-shallow@0.1.3 | |-- is-primitive@2.0.0 | +-- opn@3.0.3 | +-- portscanner@1.0.0 | | -- async@0.1.15 | +-- qs@6.2.0 | +-- resp-modifier@6.0.2 | +-- rx@4.1.0 | +-- serve-index@1.7.3 | | +-- accepts@1.2.13 | | |-- negotiator@0.5.3 | | +-- batch@0.5.3 | | +-- escape-html@1.0.3 | | -- http-errors@1.3.1 | |-- statuses@1.3.0 | +-- serve-static@1.10.3 | | -- send@0.13.2 | | +-- depd@1.1.0 | | +-- destroy@1.0.4 | | +-- mime@1.3.4 | |-- statuses@1.2.1 | +-- server-destroy@1.0.1 | +-- socket.io@1.4.6 | | +-- engine.io@1.6.9 | | | +-- accepts@1.1.4 | | | | +-- mime-types@2.0.14 | | | | | -- mime-db@1.12.0 | | | |-- negotiator@0.4.9 | | | +-- base64id@0.1.0 | | | +-- engine.io-parser@1.2.4 | | | | +-- after@0.8.1 | | | | +-- arraybuffer.slice@0.0.6 | | | | +-- base64-arraybuffer@0.1.2 | | | | +-- blob@0.0.4 | | | | +-- has-binary@0.1.6 | | | | | -- isarray@0.0.1 | | | |-- utf8@2.1.0 | | | -- ws@1.0.1 | | | +-- options@0.0.6 | | |-- ultron@1.0.2 | | +-- has-binary@0.1.7 | | | -- isarray@0.0.1 | | +-- socket.io-adapter@0.4.0 | | |-- socket.io-parser@2.2.2 | | | +-- debug@0.7.4 | | | +-- isarray@0.0.1 | | | -- json3@3.2.6 | | +-- socket.io-client@1.4.6 | | | +-- backo2@1.0.2 | | | +-- component-bind@1.0.0 | | | +-- component-emitter@1.2.0 | | | +-- engine.io-client@1.6.9 | | | | +-- component-inherit@0.0.3 | | | | +-- has-cors@1.1.0 | | | | +-- parsejson@0.0.1 | | | | +-- parseqs@0.0.2 | | | | +-- xmlhttprequest-ssl@1.5.1 | | | |-- yeast@0.1.2 | | | +-- indexof@0.0.1 | | | +-- object-component@0.0.3 | | | +-- parseuri@0.0.4 | | | | -- better-assert@1.0.2 | | | |-- callsite@1.0.0 | | | -- to-array@0.1.4 | |-- socket.io-parser@2.2.6 | | +-- benchmark@1.0.0 | | +-- component-emitter@1.1.2 | | +-- isarray@0.0.1 | | -- json3@3.3.2 | +-- ua-parser-js@0.7.10 |-- yargs@4.7.1 | +-- camelcase@3.0.0 | +-- cliui@3.2.0 | | -- wrap-ansi@2.0.0 | +-- decamelize@1.2.0 | +-- lodash.assign@4.1.0 | +-- os-locale@1.4.0 | |-- lcid@1.0.0 | | -- invert-kv@1.0.0 | +-- pkg-conf@1.1.3 | |-- symbol@0.2.3 | +-- require-main-filename@1.0.1 | +-- set-blocking@1.0.0 | +-- string-width@1.0.1 | | +-- code-point-at@1.0.0 | | | -- number-is-nan@1.0.0 | |-- is-fullwidth-code-point@1.0.0 | +-- window-size@0.2.0 | +-- y18n@3.2.1 | -- yargs-parser@2.4.1 |-- camelcase@3.0.0 +-- chai@3.5.0 | +-- assertion-error@1.0.2 | +-- deep-eql@0.1.3 | | -- type-detect@0.1.1 |-- type-detect@1.0.0 +-- chalk@1.1.3 | +-- ansi-styles@2.2.1 | +-- escape-string-regexp@1.0.5 | +-- has-ansi@2.0.0 | | -- ansi-regex@2.0.0 | +-- strip-ansi@3.0.1 |-- supports-color@2.0.0 +-- connect-history-api-fallback@1.2.0 +-- coveralls@2.11.12 | +-- js-yaml@3.0.1 | | +-- argparse@0.1.16 | | | -- underscore.string@2.4.0 | |-- esprima@1.0.4 | +-- lcov-parse@0.0.6 | +-- log-driver@1.2.4 | -- minimist@1.2.0 +-- cross-env@2.0.0 | +-- cross-spawn@3.0.1 | |-- lru-cache@4.0.1 | | +-- pseudomap@1.0.2 | | -- yallist@2.0.0 |-- lodash.assign@3.2.0 | +-- lodash._baseassign@3.2.0 | | -- lodash._basecopy@3.0.1 | +-- lodash._createassigner@3.1.1 | | +-- lodash._bindcallback@3.0.1 | |-- lodash.restparam@3.6.1 | -- lodash.keys@3.1.2 | +-- lodash._getnative@3.9.1 | +-- lodash.isarguments@3.0.9 |-- lodash.isarray@3.0.4 +-- css-loader@0.23.1 | +-- css-selector-tokenizer@0.5.4 | | +-- cssesc@0.1.0 | | -- fastparse@1.1.1 | +-- cssnano@3.7.3 | | +-- defined@1.0.0 | | +-- indexes-of@1.0.1 | | +-- postcss-calc@5.3.0 | | | +-- postcss-message-helpers@2.0.0 | | |-- reduce-css-calc@1.2.4 | | | +-- balanced-match@0.1.0 | | | -- reduce-function-call@1.0.1 | | |-- balanced-match@0.1.0 | | +-- postcss-colormin@2.2.0 | | | -- colormin@1.1.1 | | | +-- color@0.11.3 | | | | +-- color-convert@1.4.0 | | | |-- color-string@0.3.0 | | | | -- color-name@1.1.1 | | |-- css-color-names@0.0.4 | | +-- postcss-convert-values@2.4.0 | | +-- postcss-discard-comments@2.0.4 | | +-- postcss-discard-duplicates@2.0.1 | | +-- postcss-discard-empty@2.1.0 | | +-- postcss-discard-overridden@0.1.1 | | +-- postcss-discard-unused@2.2.1 | | | +-- flatten@1.0.2 | | | -- uniqs@2.0.0 | | +-- postcss-filter-plugins@2.0.1 | | |-- uniqid@3.1.0 | | | -- macaddress@0.2.8 | | +-- postcss-merge-idents@2.1.6 | | |-- has-own@1.0.0 | | +-- postcss-merge-longhand@2.0.1 | | +-- postcss-merge-rules@2.0.10 | | | -- vendors@1.0.1 | | +-- postcss-minify-font-values@1.0.5 | | +-- postcss-minify-gradients@1.0.3 | | +-- postcss-minify-params@1.0.4 | | |-- alphanum-sort@1.0.2 | | +-- postcss-minify-selectors@2.0.5 | | | -- postcss-selector-parser@2.2.0 | | |-- uniq@1.0.1 | | +-- postcss-normalize-charset@1.1.0 | | +-- postcss-normalize-url@3.0.7 | | | +-- is-absolute-url@2.0.0 | | | -- normalize-url@1.6.0 | | | +-- prepend-http@1.0.4 | | | +-- query-string@4.2.2 | | |-- sort-keys@1.1.2 | | | -- is-plain-obj@1.1.0 | | +-- postcss-ordered-values@2.2.1 | | +-- postcss-reduce-idents@2.3.0 | | +-- postcss-reduce-initial@1.0.0 | | +-- postcss-reduce-transforms@1.0.3 | | +-- postcss-svgo@2.1.4 | | | +-- is-svg@2.0.1 | | | |-- html-comment-regex@1.1.1 | | | -- svgo@0.6.6 | | | +-- coa@1.0.1 | | | |-- q@1.4.1 | | | +-- csso@2.0.0 | | | | -- clap@1.1.1 | | | +-- js-yaml@3.6.1 | | | | +-- argparse@1.0.7 | | | |-- esprima@2.7.2 | | | -- whet.extend@0.9.9 | | +-- postcss-unique-selectors@2.0.2 | |-- postcss-zindex@2.1.1 | +-- lodash.camelcase@3.0.1 | | -- lodash._createcompounder@3.0.0 | | +-- lodash.deburr@3.2.0 | | |-- lodash._root@3.0.1 | | -- lodash.words@3.2.0 | +-- postcss-modules-extract-imports@1.0.1 | +-- postcss-modules-local-by-default@1.1.1 | |-- css-selector-tokenizer@0.6.0 | | -- regexpu-core@1.0.0 | +-- postcss-modules-scope@1.0.2 | |-- css-selector-tokenizer@0.6.0 | | -- regexpu-core@1.0.0 | +-- postcss-modules-values@1.1.3 | |-- icss-replace-symbols@1.0.2 | -- source-list-map@0.1.6 +-- enzyme@2.4.1 | +-- cheerio@0.20.0 | | +-- css-select@1.2.0 | | | +-- boolbase@1.0.0 | | | +-- css-what@2.1.0 | | | +-- domutils@1.5.1 | | |-- nth-check@1.0.1 | | +-- dom-serializer@0.1.0 | | | -- domelementtype@1.1.3 | | +-- entities@1.1.1 | | +-- htmlparser2@3.8.3 | | | +-- domelementtype@1.3.0 | | | +-- domhandler@2.3.0 | | | +-- entities@1.0.0 | | |-- readable-stream@1.1.14 | | | -- isarray@0.0.1 | |-- jsdom@7.2.2 | | +-- abab@1.0.3 | | +-- acorn@2.7.0 | | +-- acorn-globals@1.0.9 | | +-- cssom@0.3.1 | | +-- cssstyle@0.2.36 | | +-- nwmatcher@1.3.8 | | +-- parse5@1.5.1 | | +-- sax@1.2.1 | | +-- symbol-tree@3.1.4 | | +-- webidl-conversions@2.0.1 | | +-- whatwg-url-compat@0.6.5 | | | -- tr46@0.0.3 | |-- xml-name-validator@2.0.1 | +-- is-subset@0.1.1 | +-- object-is@1.0.1 | +-- object.assign@4.0.4 | | +-- define-properties@1.1.2 | | | -- foreach@2.0.5 | | +-- function-bind@1.1.0 | |-- object-keys@1.0.11 | -- object.values@1.0.3 | +-- es-abstract@1.5.1 | | +-- es-to-primitive@1.1.1 | | | +-- is-date-object@1.0.1 | | |-- is-symbol@1.0.1 | | +-- is-callable@1.1.3 | | -- is-regex@1.0.3 |-- has@1.0.1 +-- eslint@3.2.2 | +-- concat-stream@1.5.1 | | +-- readable-stream@2.0.6 | | | +-- core-util-is@1.0.2 | | | +-- process-nextick-args@1.0.7 | | | -- util-deprecate@1.0.2 | |-- typedarray@0.0.6 | +-- doctrine@1.2.2 | | +-- esutils@1.1.6 | | -- isarray@1.0.0 | +-- escope@3.6.0 | | +-- es6-weak-map@2.0.1 | | +-- esrecurse@4.1.0 | | |-- estraverse@4.1.1 | | -- estraverse@4.2.0 | +-- espree@3.1.7 | | +-- acorn@3.3.0 | |-- acorn-jsx@3.0.1 | | -- acorn@3.3.0 | +-- estraverse@4.2.0 | +-- esutils@2.0.2 | +-- file-entry-cache@1.3.1 | |-- flat-cache@1.2.1 | | +-- circular-json@0.3.1 | | +-- del@2.2.1 | | | +-- globby@5.0.0 | | | | +-- array-union@1.0.2 | | | | -- glob@7.0.5 | | | +-- is-path-cwd@1.0.0 | | |-- is-path-in-cwd@1.0.0 | | | -- is-path-inside@1.0.0 | |-- write@0.2.1 | +-- glob@7.0.5 | | -- fs.realpath@1.0.0 | +-- globals@9.9.0 | +-- ignore@3.1.3 | +-- imurmurhash@0.1.4 | +-- inquirer@0.12.0 | | +-- ansi-escapes@1.4.0 | | +-- cli-cursor@1.0.2 | | |-- restore-cursor@1.0.1 | | | +-- exit-hook@1.1.1 | | | -- onetime@1.1.0 | | +-- cli-width@2.1.0 | | +-- figures@1.7.0 | | +-- readline2@1.0.1 | | +-- run-async@0.1.0 | | +-- rx-lite@3.1.2 | |-- through@2.3.8 | +-- is-my-json-valid@2.13.1 | | +-- generate-function@2.0.0 | | +-- generate-object-property@1.2.0 | | | -- is-property@1.0.2 | | +-- jsonpointer@2.0.0 | |-- xtend@4.0.1 | +-- is-resolvable@1.0.0 | | -- tryit@1.0.2 | +-- js-yaml@3.6.1 | | +-- argparse@1.0.7 | | |-- sprintf-js@1.0.3 | | -- esprima@2.7.2 | +-- json-stable-stringify@1.0.1 | |-- jsonify@0.0.0 | +-- levn@0.3.0 | | +-- prelude-ls@1.1.2 | | -- type-check@0.3.2 | +-- optionator@0.8.1 | | +-- deep-is@0.1.3 | | +-- fast-levenshtein@1.1.4 | |-- wordwrap@1.0.0 | +-- path-is-inside@1.0.1 | +-- pluralize@1.2.1 | +-- progress@1.1.8 | +-- require-uncached@1.0.2 | | +-- caller-path@0.1.0 | | | -- callsites@0.2.0 | |-- resolve-from@1.0.1 | +-- shelljs@0.6.1 | +-- strip-bom@3.0.0 | +-- strip-json-comments@1.0.4 | +-- table@3.7.8 | | +-- slice-ansi@0.0.4 | | +-- tv4@1.2.7 | | -- xregexp@3.1.1 | +-- text-table@0.2.0 |-- user-home@2.0.0 | -- os-homedir@1.0.1 +-- eslint-plugin-import@1.12.0 | +-- builtin-modules@1.1.1 | +-- contains-path@0.1.0 | +-- es6-map@0.1.4 | | +-- d@0.1.1 | | +-- es5-ext@0.10.12 | | +-- es6-iterator@2.0.0 | | +-- es6-symbol@3.1.0 | |-- event-emitter@0.3.4 | +-- es6-set@0.1.4 | +-- eslint-import-resolver-node@0.2.2 | | -- resolve@1.1.7 | +-- lodash.cond@4.5.1 | +-- lodash.endswith@4.2.0 | +-- lodash.find@4.5.1 | +-- lodash.findindex@4.5.1 | +-- pkg-dir@1.0.0 | |-- find-up@1.1.2 | | -- path-exists@2.1.0 |-- pkg-up@1.0.0 +-- eslint-plugin-jsx-a11y@2.0.1 | +-- damerau-levenshtein@1.0.0 | -- jsx-ast-utils@1.3.1 +-- eslint-plugin-react@6.0.0 +-- eslint-watch@2.1.14 |-- keypress@0.2.1 +-- extract-text-webpack-plugin@1.0.1 | +-- async@1.5.2 | -- webpack-sources@0.1.2 +-- file-loader@0.9.0 +-- html-webpack-plugin@2.22.0 | +-- bluebird@3.4.1 | +-- html-minifier@2.1.7 | | +-- change-case@3.0.0 | | | +-- camel-case@3.0.0 | | | +-- constant-case@2.0.0 | | | +-- dot-case@2.1.0 | | | +-- header-case@1.0.0 | | | +-- is-lower-case@1.1.3 | | | +-- is-upper-case@1.1.2 | | | +-- lower-case@1.1.3 | | | +-- lower-case-first@1.0.2 | | | +-- no-case@2.3.0 | | | +-- param-case@2.1.0 | | | +-- pascal-case@2.0.0 | | | +-- path-case@2.1.0 | | | +-- sentence-case@2.1.0 | | | +-- snake-case@2.1.0 | | | +-- swap-case@1.1.2 | | | +-- title-case@2.1.0 | | | +-- upper-case@1.1.3 | | |-- upper-case-first@1.1.2 | | +-- clean-css@3.4.19 | | | +-- commander@2.8.1 | | | -- source-map@0.4.4 | | +-- he@1.1.0 | | +-- ncname@1.0.0 | | |-- xml-char-classes@1.0.0 | | -- relateurl@0.2.7 | +-- pretty-error@2.0.0 | | +-- renderkid@2.0.0 | | | +-- dom-converter@0.1.4 | | | |-- utila@0.3.3 | | | +-- htmlparser2@3.3.0 | | | | +-- domhandler@2.1.0 | | | | +-- domutils@1.1.6 | | | | -- readable-stream@1.0.34 | | | |-- isarray@0.0.1 | | | -- utila@0.3.3 | |-- utila@0.4.0 | -- toposort@1.0.0 +-- isparta@4.0.0 | +-- escodegen@1.8.1 | | +-- esprima@2.7.2 | | +-- estraverse@1.9.3 | |-- source-map@0.2.0 | +-- esprima@2.7.2 | +-- istanbul@0.4.4 | | +-- abbrev@1.0.9 | | +-- esprima@2.7.2 | | +-- fileset@0.2.1 | | | -- minimatch@2.0.10 | | +-- handlebars@4.0.5 | | |-- source-map@0.4.4 | | -- nopt@3.0.6 | +-- nomnomnomnom@2.0.1 | | +-- chalk@0.4.0 | | | +-- ansi-styles@1.0.0 | | | +-- has-color@0.1.7 | | |-- strip-ansi@0.1.1 | | -- underscore@1.6.0 |-- which@1.2.10 | -- isexe@1.1.2 +-- mocha@3.0.1 | +-- browser-stdout@1.3.0 | +-- diff@1.4.0 | +-- glob@7.0.5 | +-- growl@1.9.2 | +-- json3@3.3.2 | +-- lodash.create@3.1.1 | | +-- lodash._basecreate@3.0.3 | |-- lodash._isiterateecall@3.0.9 | -- supports-color@3.1.2 |-- has-flag@1.0.0 +-- node-sass@3.8.0 | +-- async-foreach@0.1.3 | +-- gaze@1.1.1 | | -- globule@1.0.0 | | +-- glob@7.0.5 | |-- lodash@4.9.0 | +-- get-stdin@4.0.1 | +-- glob@7.0.5 | +-- in-publish@2.0.0 | +-- lodash.clonedeep@4.4.1 | +-- meow@3.7.0 | | +-- camelcase-keys@2.1.0 | | | -- camelcase@2.1.1 | | +-- loud-rejection@1.6.0 | | | +-- currently-unhandled@0.4.1 | | | |-- array-find-index@1.0.1 | | | -- signal-exit@3.0.0 | | +-- map-obj@1.0.1 | | +-- normalize-package-data@2.3.5 | | | +-- hosted-git-info@2.1.5 | | | +-- is-builtin-module@1.0.0 | | |-- validate-npm-package-license@3.0.1 | | | +-- spdx-correct@1.0.2 | | | | -- spdx-license-ids@1.2.2 | | |-- spdx-expression-parse@1.0.2 | | | -- spdx-exceptions@1.0.5 | | +-- redent@1.0.0 | | | +-- indent-string@2.1.0 | | | |-- repeating@2.0.1 | | | -- strip-indent@1.0.1 | |-- trim-newlines@1.0.0 | +-- nan@2.4.0 | +-- node-gyp@3.4.0 | | +-- fstream@1.0.10 | | +-- glob@7.0.5 | | +-- npmlog@3.1.2 | | | +-- are-we-there-yet@1.1.2 | | | | -- delegates@1.0.0 | | | +-- console-control-strings@1.1.0 | | | +-- gauge@2.6.0 | | | | +-- aproba@1.0.4 | | | | +-- has-unicode@2.0.1 | | | |-- wide-align@1.1.0 | | | -- set-blocking@2.0.0 | | +-- osenv@0.1.3 | | +-- path-array@1.0.1 | | |-- array-index@1.0.0 | | -- tar@2.2.1 | |-- block-stream@0.0.9 | -- sass-graph@2.1.2 |-- glob@7.0.5 +-- npm-run-all@2.3.0 | +-- cross-spawn@4.0.0 | +-- pinkie-promise@2.0.1 | | -- pinkie@2.0.4 | +-- ps-tree@1.1.0 | |-- event-stream@3.3.4 | | +-- duplexer@0.1.1 | | +-- from@0.1.3 | | +-- map-stream@0.1.0 | | +-- pause-stream@0.0.11 | | +-- split@0.3.3 | | -- stream-combiner@0.0.4 | +-- read-pkg@1.1.0 | | +-- load-json-file@1.1.0 | | | +-- parse-json@2.2.0 | | | |-- error-ex@1.3.0 | | | | -- is-arrayish@0.2.1 | | | +-- pify@2.3.0 | | |-- strip-bom@2.0.0 | | | -- is-utf8@0.2.1 | |-- path-type@1.1.0 | +-- read-pkg-up@1.0.1 | +-- shell-quote@1.6.1 | | +-- array-filter@0.0.1 | | +-- array-map@0.0.0 | | -- array-reduce@0.0.0 |-- string.prototype.padend@3.0.0 +-- object-assign@4.1.0 +-- open@0.0.5 +-- postcss-loader@0.9.1 +-- prompt@1.0.0 | +-- colors@1.1.2 | +-- pkginfo@0.4.0 | +-- read@1.0.7 | | -- mute-stream@0.0.5 | +-- revalidator@0.1.8 | +-- utile@0.3.0 | | +-- async@0.9.2 | | +-- deep-equal@0.2.2 | | +-- i@0.3.5 | |-- ncp@1.0.1 | -- winston@2.1.1 | +-- async@1.0.0 | +-- colors@1.0.3 | +-- cycle@1.0.3 | +-- eyes@0.1.8 | +-- pkginfo@0.3.1 |-- stack-trace@0.0.9 +-- react@15.3.0 | +-- fbjs@0.8.3 | | +-- core-js@1.2.7 | | +-- isomorphic-fetch@2.2.1 | | | +-- node-fetch@1.6.0 | | | | +-- encoding@0.1.12 | | | | | -- iconv-lite@0.4.13 | | | |-- is-stream@1.1.0 | | | -- whatwg-fetch@1.0.0 | |-- promise@7.1.1 | | -- asap@2.0.4 |-- loose-envify@1.2.0 | -- js-tokens@1.0.3 +-- react-addons-test-utils@15.3.0 +-- react-dom@15.3.0 +-- react-redux@4.4.5 | +-- hoist-non-react-statics@1.2.0 |-- invariant@2.2.1 +-- react-router@2.6.1 | +-- history@2.1.2 | | +-- deep-equal@1.0.1 | | +-- query-string@3.0.3 | | | -- strict-uri-encode@1.1.0 | |-- warning@2.1.0 | -- warning@3.0.0 +-- react-router-redux@4.0.5 +-- redux@3.5.2 | +-- lodash-es@4.14.2 |-- symbol-observable@0.2.4 +-- redux-immutable-state-invariant@1.2.3 | -- json-stringify-safe@5.0.1 +-- replace@0.3.0 | +-- colors@0.5.1 | +-- minimatch@0.2.14 | | +-- lru-cache@2.7.3 | |-- sigmund@1.0.1 | -- nomnom@1.6.2 | +-- colors@0.5.1 |-- underscore@1.4.4 +-- rimraf@2.5.4 | -- glob@7.0.5 +-- sass-loader@4.0.0 +-- sinon@1.17.5 | +-- formatio@1.1.1 | +-- lolex@1.3.2 | +-- samsam@1.1.2 |-- util@0.10.3 +-- sinon-chai@2.8.0 +-- style-loader@0.13.1 +-- url-loader@0.5.7 | -- mime@1.2.4 +-- webpack@1.13.1 | +-- acorn@3.3.0 | +-- clone@1.0.2 | +-- enhanced-resolve@0.9.1 | |-- memory-fs@0.2.0 | +-- interpret@0.6.6 | +-- memory-fs@0.3.0 | | +-- errno@0.1.4 | | | -- prr@0.0.0 | |-- readable-stream@2.1.4 | | -- buffer-shims@1.0.0 | +-- node-libs-browser@0.5.3 | | +-- assert@1.4.1 | | +-- browserify-zlib@0.1.4 | | |-- pako@0.2.9 | | +-- buffer@3.6.0 | | | +-- base64-js@0.0.8 | | | -- ieee754@1.1.6 | | +-- console-browserify@1.1.0 | | |-- date-now@0.1.4 | | +-- constants-browserify@0.0.1 | | +-- crypto-browserify@3.2.8 | | | +-- pbkdf2-compat@2.0.1 | | | +-- ripemd160@0.2.0 | | | -- sha.js@2.2.6 | | +-- domain-browser@1.1.7 | | +-- events@1.1.1 | | +-- http-browserify@1.7.0 | | |-- Base64@0.2.1 | | +-- https-browserify@0.0.0 | | +-- os-browserify@0.1.2 | | +-- path-browserify@0.0.0 | | +-- process@0.11.8 | | +-- punycode@1.4.1 | | +-- querystring-es3@0.2.1 | | +-- readable-stream@1.1.14 | | | -- isarray@0.0.1 | | +-- stream-browserify@1.0.0 | | |-- readable-stream@1.1.14 | | | -- isarray@0.0.1 | | +-- string_decoder@0.10.31 | | +-- timers-browserify@1.4.2 | | |-- process@0.11.8 | | +-- tty-browserify@0.0.0 | | +-- url@0.10.3 | | | -- punycode@1.3.2 | |-- vm-browserify@0.0.4 | +-- optimist@0.6.1 | | +-- minimist@0.0.10 | | -- wordwrap@0.0.3 | +-- tapable@0.1.10 | +-- uglify-js@2.6.4 | | +-- async@0.2.10 | | +-- uglify-to-browserify@1.0.2 | |-- yargs@3.10.0 | | +-- camelcase@1.2.1 | | +-- cliui@2.1.0 | | | +-- center-align@0.1.3 | | | | +-- align-text@0.1.4 | | | | | -- longest@1.0.1 | | | |-- lazy-cache@1.0.4 | | | +-- right-align@0.1.3 | | | -- wordwrap@0.0.2 | |-- window-size@0.1.0 | +-- watchpack@0.2.9 | | -- async@0.9.2 |-- webpack-core@0.6.8 | -- source-map@0.4.4 +-- webpack-dev-middleware@1.6.1 | +-- mime@1.3.4 |-- range-parser@1.0.3 +-- webpack-hot-middleware@2.12.2 | +-- ansi-html@0.0.5 | +-- html-entities@1.2.0 | -- querystring@0.2.0 -- webpack-md5-hash@0.0.5 -- md5@2.1.0 +-- charenc@0.0.1 +-- crypt@0.0.1 -- is-buffer@1.1.4

npm WARN optional Skipping failed optional dependency /chokidar/fsevents: npm WARN notsup Not compatible with your operating system or architecture: fsevents@1.0.14 npm WARN optional Skipping failed optional dependency /browser-sync/chokidar/fsevents: npm WARN notsup Not compatible with your operating system or architecture: fsevents@1.0.14

coryhouse commented 8 years ago

That install looks good. You should be all set now. It appears the issue is you didn't run npm install initially.

When you type npm start you should see the example app now.

mycoin commented 8 years ago

There are a lot of problems !

  1. npm install, lots of warns,Very slow(30min)
801M    node_modules/

Can you imagine?? 801MB?

  1. Dependences are not complete
npm WARN uninstall not installed in /Users/apple/Public/Lons/react-slingshot/node_modules: "babel"
  1. npm start
Starting app in dev mode...
sh: esw: command not found
ERROR: "lint:watch" exited with 1.

... WTF

vjwilson commented 8 years ago

@mycoin ,

I'm seeing a much smaller node_modules directory:

    $ du -shc ./node_modules/
    174M  ./node_modules/
    174M  total

Try deleting the project's node_modules directory, make sure that your version of Node is at a version >= 3 (version >= 6 is even better), and upgrade that version of Node's npm to version >= 3.

Then, try running npm install again.

magestican commented 8 years ago

Ignoring this not working, what you can do is modify the file srcServer.js and pass the option quiet in true to suppress module loading information which to me is of no use :


middleware: [
      webpackDevMiddleware(bundler, {
        // Dev middleware can't access config, so we provide publicPath
        publicPath: config.output.publicPath,

        // pretty colored output
        stats: { colors: true },

        // Set to false to display a list of each file that is being bundled.
        noInfo: true,
        quiet:true
        // for other settings see
        // http://webpack.github.io/docs/webpack-dev-middleware.html
      }),
      // bundler should be the same as above
      webpackHotMiddleware(bundler),
      historyApiFallback()
    ]
  },
kwelch commented 7 years ago

This currently is no longer failing. Please submit a new issue if you see this in the future.

See @magestican's post ☝️ for controlling the webpack output.

Premjeet-Singh commented 7 years ago

Failed to run npm start -s OS: macOS sierra

  1. clone this repo.
  2. npm run setup
  3. npm start -s

getting error: npm start -s Starting app in dev mode... No tests found In /Users/premsingh/Documents/Workspace/react-slingshot 50 files checked. testMatch: /tests//*.js?(x),*/?(.)(spec|test).js?(x) - 12 matches testPathIgnorePatterns: /node_modules/ - 50 matches Pattern: "--watch" - 0 matches

coryhouse commented 7 years ago

Thanks for reporting @Premjeet-Singh - I just committed a fix.

manideepcs024 commented 5 years ago

I am facing a issue with initial setup. git clone npm install npm start

after start message it fails react-slingshot@7.0.1 start: concurrently -k -r -s first "npm run test:watch" "npm run open:src" "npm run lint:watch"

please provide a solution. I have tried upgrading to latest version of node and also deleted node_modules and did npm install again but it fails.

konekoya commented 5 years ago

would you be able to provide a minimal repo that reproduces the error?