Install npm lite-server for automatic update in your browser
This is a basic step by step on how to install npm lite server. Requirements: create a project and open it in vsc or atom. node and npm installed. Open power shell and access the folder were your project is, and check the current node and npm version by typing the command prompt node -v and npm -v To start, we are going to create a package. json file, typ e the co mmand prompt npm init press enter and fill in all the info. asked (description, name, author etc...): when you about to finish it will show you something like this: press enter and you can now check what is in the folder by using the command prompt ls you see now a package.json folder, awesome! after this, you are going to type the command prompt to install the lite-server. (This can take a few minutes) npm install lite-server --save-dev yarn add lite-server --dev # or yarn go now to vsc, in your project you will found a new document called packag...