Limz – Theme Documentation

Setup Local Development Environment

Setup Local Development Environment

To kickstart the development of the web app with Limz, at first need to setup the React development environment.

The following steps need to follow before going further-

Installation
  1. Install Node.js and NPM: Download Node.js from https://nodejs.org/en/download/ and install it on your system. NPM comes bundled with Node.js
  2. Install npm packages: In the terminal, go to your project root directory and run the npm install command, it will download all the dependencies under the node_modules folder.

Preparation

Step 1: You’ll need to install Node.js >=v10.0+ (Recommended Version) (NPM comes along with it) and serve (an NPM package)

Step 2: Open the Limz folder in Visual Studio Code and open a terminal on that folder and run these commands one by one.

  1. npm install
  2. ng serve
  3. Go To localhost:4200
  4. Done

Step 3: Create a production build.

  • ng build
  • Angular will perform an optimized production build for your site, The build artifacts will be stored dist/ directory.

now you are ready to go.