facebookarchive / flux

Application Architecture for Building User Interfaces
https://facebookarchive.github.io/flux/
Other
17.44k stars 3.47k forks source link

npm error missing script watch is coming #445

Closed flik closed 6 years ago

flik commented 6 years ago

H:\books\js\flux>npm run watch npm ERR! missing script: watch

npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\Jan2018\AppData\Roaming\npm-cache_logs\2018-02-07T03_08_2

kyldvs commented 6 years ago

watch is not a valid command: https://github.com/facebook/flux/blob/master/package.json#L23-L27

What would you expect it to do?

flik commented 6 years ago

I was following instructions on https://github.com/facebook/flux/tree/master/examples/flux-todomvc and want expected results.

kyldvs commented 6 years ago

You probably forgot this line:

cd examples/my-todomvc

The main flux directory does not have a watch command, the examples do.

Let me know if that does not fix it.