Loading...
Customize

Customize theme

Colors
Primary
Warning
Info
Success
Danger
Typography (1rem = 16px)
Borders / Rounding

Menu

Contents

Buy now

Installing Vendor plugins with Npm

Follow this 4 easy steps to install 3rd party plugin and use it in your Around based project:

  1. Open your Terminal window and navigate to the root directory of your project (where you package.json file is located).
  2. Run npm install <package name> --save. This command does two things: downloads package to node_modules folder and writes dependency to your package.json file inside dependencies object.
  3. Run npm run vendor. This command will clean assets/vendor folder and move all the dpendencies that are listed in package.json file under dependencies object to assets/vendor directory including your newly downloaded plugins.
  4. The final step is to link the plugin's scripts and styles in your HTML document.