live-server
Version:
simple development http server with live reload capability
16 lines (10 loc) • 1.01 kB
Markdown
Contributing Guidelines
=======================
When implementing a new feature or a bugfix, consider these points:
* Is this thing useful to other people, or is it just catering for an obscure corner case resulting from e.g. weirdness in personal dev environment?
* Should the thing be live-server's responsibility at all, or is it better served by other tools?
* Am I introducing unnecessary dependencies when the same thing could easily be done using normal JavaScript / node.js features?
* Does the naming (e.g. command line parameters) make sense and uses same style as other similar ones?
* Does my code adhere to the project's coding style (observable from surrounding code)?
A few guiding principles: keep the app simple and small, focusing on what it's meant to provide: live reloading development web server. Avoid extra dependencies and the need to do configuration when possible and it makes sense. Minimize bloat.
**Run `npm test` to check that you are not introducing new bugs or style issues!**