Getting Started
Accelerate company's development with this astonishing template.
Note:
We recommend our buyer to make one css file
& one js file and add that in your page, so whenever
the template is updated it does not affect the
code that our users are using.
If the buyer is using css then no need to follow below steps. Just go to the html/ltr/index.html and
open that file in to the browser for the desired output.
If the buyer is using scss and package manager then we have compilation tool (gulp) which makes it
very easy for compilation. The tasks that Gulp is doing for us are mentioned below.
- Install Node.js From https://nodejs.org/en/download/
- Open command prompt or any other terminal and go to Package path.
-
Npm is a default
package manager for the JavaScript
runtime environment Node.js. If it's already installed then update
once.
npm install --global npm@latestTo check whether node is successfully installed or not
npm --version - For yarn package manager
npm install --global yarnTo check whether yarn is successfully installed or not
yarn --version -
To Automate compilation tasks in our buyer's development workflow, we
recommend
to use Gulp. To install gulp globally
npm install --global gulp-cliIf you have previously installed gulp then remove it.
npm rm --global gulpTo check whether yarn is successfully installed or not
gulp --version -
The following command will execute all the assets (JS, SCSS) to the dist folder separately.
gulp
How to Install npm dependencies?
In your root folder enter the following command to install
the project dependencies: npm install, this
command will install all the template libraries inside the
node_modules folder, after that you need to run this
command gulp copy to include dependencies in
assets/libs folder.