# Installation

TIP

To install , follow the below steps

# Quick Start

The fastest way to get image-upload-plugin set up in your project to get it installed right away in your project.

To use it, open up your terminal in the desired directory and run the following command:

npm install --save image-upload-plugin

# Manual Installation

If you prefer to get things started up from scratch, then follow the below steps:

  1. Create and change into a new directory
$ mkdir [your_directory_name] && cd [your_directory_name]
  1. Initialize with your preferred package manager
npm init
  1. Install image-upload-plugin locally
npm install --save image-upload-plugin
  1. Import image-upload-plugin
import  UploadLoader  from 'image-upload-plugin'
  1. Use your imported plugin in your application.

TIP

Ensure your are in the right directory and you have node.js installed globally or in your porject.

Last Updated: 8/27/2021, 8:56:48 PM