844 bytes added ,  17 May 2016
iwu
 
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:
* ''Last tested on Ubuntu 16.04 LTS (xenial) | easy | less than five minutes''
* ''Last tested on Ubuntu 16.04 LTS (xenial) | easy | less than five minutes''


<syntaxhighlight lang="bash">
<source lang="bash">
# check the current version number
# check the current version number
$ node -v
$ node -v
Line 23: Line 23:
# check updated Nodejs version
# check updated Nodejs version
$ node -v
$ node -v
</syntaxhighlight>
</source>
 
== Packages ==
 
=== browser-sync ===
 
[https://www.browsersync.io/ Browsersync]
 
Your indispensable test assistant. With each web page, device and browser, testing time grows exponentially. From live reloads to URL pushing, form replication to click mirroring, Browsersync cuts out repetitive manual tasks. It’s like an extra pair of hands. Customise an array of sync settings from the UI or command line to create a personalised test environment. Need more control? Browsersync is easily integrated with your web platform, build tools, and other Node.js projects.
 
=== lite-server ===
 
[https://github.com/johnpapa/lite-server lite-server]
 
Lightweight development only node server that serves a web app, opens it in the browser, refreshes when html or javascript change, injects CSS changes using sockets, and has a fallback page when a route is not found.