diff --git a/README.md b/README.md
new file mode 100644
index 0000000..be3401d
--- /dev/null
+++ b/README.md
@@ -0,0 +1,47 @@
+# svg-iconset
+Plugin to create iconsets from SVG files
+
+> Disclaimer:
+> This plugin was created to prepare iconsets for [Angular Material Icons](https://material.angular.io/components/icon/api#MatIconRegistry)
+> The кesult file will be a set of svg's with unique ids as a filename
+
+## Installation
+
+Support command line interface:
+```
+npm install svg-iconset -g
+```
+Or you can install for yout project
+```
+npm install svg-iconset --save
+```
+## Usage
+
+### Command line
+```
+svg-iconset --source= --name= --attrs= --removeViewBox=
+```
+
+Examples:
+```
+svg-iconset --source=assets/images/icons --name=icons
+```
+Creates file `icons-iconset.svg` in same folder
+### In Project
+```
+
+const SvgIconset = require('svg-iconset');
+
+const config = {
+ source: 'assets/images/icons', // Reqired
+ result: 'icons', // Required
+ // This is optional for optimisations
+ optimize: {
+ attrs: 'width, height, fill, stroke', // Will remove attributes
+ removeViewBox: true, // Will remove attribute viewBox (default true)
+ }
+}
+
+new SvgIconset(config).createSet();
+
+```