WICG / virtual-scroller

Other
2k stars 83 forks source link

no need to introduce extra python env #140

Closed calidion closed 6 years ago

calidion commented 6 years ago
$ npm install
$ python -m SimpleHTTPServer 8081

can be replaced by :

$ npm install
$ npm install -g http-server   // If http-server is not installed.
$ http-server -p 8081

no need to introduce extra python env

valdrinkoshi commented 6 years ago

Hi @calidion, the intent of that part is to suggest "serve the files however you'd like", and we provided a python script - but it's totally fine to serve in any other way. This is being addressed in #138.

valdrinkoshi commented 6 years ago

Fixed in #138